UNPKG

@mui/x-date-pickers

Version:

The community edition of the MUI X Date and Time Picker components.

13 lines 489 B
import type { DefaultizedProps } from '@mui/x-internals/types'; import type { ValidateDateProps } from "../validation/index.mjs"; import type { PickerValidDate, TimezoneProps } from "../models/index.mjs"; export declare const useIsDateDisabled: ({ shouldDisableDate, shouldDisableMonth, shouldDisableYear, minDate, maxDate, disableFuture, disablePast, timezone }: ValidateDateProps & DefaultizedProps<TimezoneProps, "timezone">) => (day: PickerValidDate | null) => boolean;