import { DateRange } from '../../utils/types/Date'; import { DatePickerPropOnError } from './types'; type OnChange = (value: DateRange | null, props: { e: Event; }) => void; export declare const getChangeFnRange: (onChange: OnChange | undefined, onError: DatePickerPropOnError | undefined, currentValue: DateRange | null | undefined) => readonly [(value: Date | null, props: { e: Event; }) => void, (value: Date | null, props: { e: Event; }) => void]; export {};