/// <reference types="react" />
export interface DateInputPickerProps extends React.HTMLAttributes<HTMLElement> {
    passProps?: object;
    /** Support @testing-library/react `screen.getByTestId` */
    'data-testid'?: string;
    value: string | null;
    onChange: (date: Date | null) => void;
    minDate?: string;
    maxDate?: string;
    disabled?: boolean;
}
