import type { DateType } from '../../../components/Calendar/Calendar.types'; type GetOriginalDateTimeArgs = { value: string | DateType; lang?: string; fullFormat?: string; dateFormat?: string; timeFormat?: string; needFullMonth?: boolean; }; type ValueStructure = { isoDate: string; formattedDate: string; originalDate: Date | undefined; dateValue: Date | undefined; timeValue: Date | undefined; }; export declare const getOriginalDateTime: ({ value, lang, fullFormat, dateFormat, timeFormat, needFullMonth, }: GetOriginalDateTimeArgs) => ValueStructure; export {}; //# sourceMappingURL=getOriginalDateTime.d.ts.map