export declare const epoch: () => number; declare type Unit = 'd' | 'h' | 'm' | 's'; declare type SecondsInput = `${number}${Unit}`; export declare const seconds: (input: SecondsInput) => number; export {};