/** * 时间格式工具模块。 * * 职责说明: * 1. 提供统一时间戳格式。 * 2. 提供耗时格式化,便于日志和 CLI 输出使用一致单位。 * 3. 提供 runtime 时区格式化,确保 prompt / message / task 共享同一时间口径。 */ export declare function get_timestamp(): string; export declare function resolve_runtime_timezone(): string; export declare function format_date_in_timezone(date?: Date, timezone?: string): string; export declare function format_date_time_in_timezone(date?: Date, timezone?: string): string; export declare function format_year_in_timezone(date?: Date, timezone?: string): string; //# sourceMappingURL=Time.d.ts.map