import "dayjs/locale/zh-cn"; declare function timestampToTimeString(timestamp: number): string; declare function getDayName(timestamp: number): string; declare function formatToMin(timestamp: number): string; declare function formatToDaytime(timestamp: number): string; declare function formatTime(timestamp: number, formatString: string): string; declare function getDayNameList(start: number, days: number): string[]; declare function getTodayStart(dayOffset?: number): number; declare function getDayStart(timestamp: number): number; export declare const timeUtils: { readonly getDayName: typeof getDayName; readonly getDayNameList: typeof getDayNameList; readonly getTodayStart: typeof getTodayStart; readonly getDayStart: typeof getDayStart; readonly timestampToTimeString: typeof timestampToTimeString; readonly formatToMin: typeof formatToMin; readonly formatTime: typeof formatTime; readonly formatToDaytime: typeof formatToDaytime; readonly dayLength: number; }; export {};