import { ReactNode } from 'react'; import { TextInputNextProps } from '../../TextInputNext'; import { DatePickerType } from '../utils'; export type InputProps = { value?: Date | [Date, Date]; setValue?: (value: Date | [Date, Date] | undefined) => void; label?: ReactNode; placeholder?: string; open: () => void; type: DatePickerType; format?: string; range?: boolean; readOnly?: boolean; focusOnClear?: boolean; labelPlacement?: TextInputNextProps['labelPlacement']; size?: TextInputNextProps['size']; elementsClassNames?: TextInputNextProps['elementsClassNames']; className?: string; testId?: string; isOpen: boolean; isNext: boolean; }; export declare const Input: import("react").ForwardRefExoticComponent>; //# sourceMappingURL=Input.d.ts.map