import dayjs from 'dayjs'; import type { Dayjs } from 'dayjs'; type UniversalDateTimeInterpretation = 'endOfDay' | 'startOfDay'; export declare const universalDateTimeToDayjs: (universalDateTime: Dayjs | string, interpretDate?: UniversalDateTimeInterpretation) => dayjs.Dayjs; export declare const universalDateTimeToDateString: (universalDateTime: Dayjs | string) => string; export declare const universalDateTimeToDate: (universalDateTime: Dayjs | string, interpretDate?: UniversalDateTimeInterpretation) => Date; export default universalDateTimeToDayjs;