import { default as React, ReactNode } from 'react'; import { InputVariant } from '../../Input'; export type DatePickerInputProps = { fit?: 'content' | 'parent'; isDisabled?: boolean; calendarId: string; isCalendarOpen?: boolean; isInvalid?: boolean; placeholder?: string; value: Date | undefined; onChange: (date?: Date) => void; openCalendar: () => void; closeCalendar: () => void; variant?: InputVariant; leftAddon?: ReactNode; }; export declare const DatePickerInput: ({ fit, isDisabled, isCalendarOpen, isInvalid, placeholder, value, onChange, openCalendar, closeCalendar, calendarId, ...rest }: DatePickerInputProps) => React.JSX.Element; //# sourceMappingURL=DatePickerInput.d.ts.map