import { DatePickerType, DatePickerValue, DateStringValue } from '../../types'; interface UseUncontrolledDates { type: Type; value: DatePickerValue | undefined; defaultValue: DatePickerValue | undefined; onChange: ((value: DatePickerValue) => void) | undefined; withTime?: boolean; } export declare const convertDatesValue: (value: any, withTime: boolean) => string | (string | null | undefined)[] | null | undefined; export declare function useUncontrolledDates({ type, value, defaultValue, onChange, withTime, }: UseUncontrolledDates): any[]; export {};