export type TimeSelectStep = string; export declare const parseTimeToSeconds: (t: string) => number | null; export declare const secondsToTime: (sec: number, withSeconds?: boolean) => string; export declare const parseStepToSeconds: (step: TimeSelectStep) => number; export declare const buildTimeList: (start: string, end: string, step: string) => string[];