type OperateTimeToDateOptions = { date?: Date; format?: string; }; type OperateTimeToDateFunction = (date: Date, amount: number) => Date; export type AddTimeToDateOptions = OperateTimeToDateOptions; export type AddTimeFunction = OperateTimeToDateFunction; export type DateOutput = Date | string; export type FormatDateTimeDifferenceOptions = { showDays: boolean; showHours: boolean; showMinutes: boolean; labels: Record; }; export type OptionalDate = Date | null; export type SubTimeToDateOptions = OperateTimeToDateOptions; export type SubTimeFunction = OperateTimeToDateFunction; export type TimeDifference = { days: number; hours: number; minutes: number; }; export {}; //# sourceMappingURL=type.d.ts.map