import type { MaskitoDateMode, MaskitoDateSegments } from '../../types'; interface BaseDateRangeParams { dateSeparator?: string; rangeSeparator?: string; min?: Date; max?: Date; minLength?: Partial>; maxLength?: Partial>; } export type MaskitoDateRangeParams = BaseDateRangeParams & ({ locale: string; mode?: MaskitoDateMode; } | { locale?: string; mode: MaskitoDateMode; }); export {}; //# sourceMappingURL=date-range-params.d.ts.map