export declare const getText: (text?: IMultiElementCombineMsg.IText | string | undefined) => string; export declare const getNumOfHourMin: (time?: string) => number[]; /** * eg: 1613986831 -> '17:40' * @param {时间戳(秒)} time * @param {转换的格式} format */ export declare const getFormatByMill: (time: any, format?: string) => string; /** * 获取这一天的起始时间戳,返回值为字符串类型 * eg: 1612704600(2021-02-07 21:30:00) -> '1612627200'(2021-02-07 00:00:00) * @param {时间戳(秒)} time */ export declare const getStartTimeOfDayByMill: (time: any) => number; export declare const getRangArr: (start: any, end: any) => number[]; /** * @description 获取当前时间的整分钟时间戳 */ export declare const getWholeMins: (stamp: any) => number;