import { DateTimePropDisableDates, DateTimePropType } from '../../components/DateTime'; export declare const isEqualDates: (firstDate: Date, secondDate: Date, mode: DateTimePropType | undefined, timeType?: "hours" | "minutes" | "seconds" | undefined) => boolean; export declare const isDisableDate: (params: { date: Date; disableDates: DateTimePropDisableDates | undefined; mode?: DateTimePropType; timeType?: TYPE extends "time" ? "hours" | "minutes" | "seconds" : undefined; }) => boolean;