UNPKG

mui-simple

Version:

Override mui-v7 components to simplify usage

18 lines 567 B
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