import { Dayjs } from 'dayjs'; import { DateStringValue, DateTimeStringValue } from '../../types'; type ExactOptionalReturn = T extends undefined ? undefined : T extends null ? null : MainType; export declare function toDateString(value: T): ExactOptionalReturn; export declare function toDateTimeString(value: T): ExactOptionalReturn; export {};