import { Dayjs } from 'dayjs'; /** 从用户输入的 createdAt 中提取出关联数据,注意,这里的数据是包头不包尾 */ export declare function getDateRangeFromStr(createdAt: string, createdAtRange?: [Dayjs, Dayjs]): string[]; /** * 时间长度格式化 * xx天 xx小时 xx分钟 xx秒 * @param v 毫秒 * @returns */ export declare const getDurationFormat: (v: number) => string;