import type { ChangeEvent, HTMLInputTypeAttribute } from 'react';

export interface Input {
	label: string;
	type: HTMLInputTypeAttribute;
	id: string;
	placeholder: string | any;
	classNameContainer?: string;
	inputValue: string | number | readonly string[] | undefined;
	changeHandler: (event: ChangeEvent<HTMLInputElement>) => void;
	clickHandler?: (event: React.MouseEvent) => void;
	disabled: boolean;
}
