import { type TimeFormatPreference } from "./date-time.js"; /** * Runtime attestation (ADR 0005 H9). Declares the implementation status * of each runtime export in this module. See CONTRIBUTING.md ยง Module * attestations for the category definitions and the convention for * updating these when sync or rebrand changes the surface. */ export declare const MODULE_ATTESTATIONS: { readonly resolveCronStyleNow: "live"; readonly appendCronStyleCurrentTimeLine: "live"; }; export type CronStyleNow = { userTimezone: string; formattedTime: string; timeLine: string; }; type TimeConfigLike = { agents?: { defaults?: { userTimezone?: string; timeFormat?: TimeFormatPreference; }; }; }; export declare function resolveCronStyleNow(cfg: TimeConfigLike, nowMs: number): CronStyleNow; export declare function appendCronStyleCurrentTimeLine(text: string, cfg: TimeConfigLike, nowMs: number): string; export {};