import type { TIMEZONE } from '../../timezone';
import type { LOCALE } from '../../locales';
type DateType = Date | string | number;
interface UseInputDateDataProps {
    value: DateType;
    min?: DateType;
    max?: DateType;
    timezone?: TIMEZONE;
    locale?: LOCALE;
}
export declare const useInputDateData: ({ value: _value, min: _min, max: _max, timezone, locale, }: UseInputDateDataProps) => {
    min: Date;
    max: Date;
    value: Date;
};
export declare const getSlotsProps: (props: any) => any;
export {};
//# sourceMappingURL=InputDate.hooks.d.ts.map