import type { DB } from '../../data/db/index.js'; export declare const TRACE_PARTITION_MAINTENANCE_JOB = "pipework.trace.partition-maintenance"; /** Daily at 01:10 UTC — past the midnight day rollover, before business hours. */ export declare const TRACE_PARTITION_MAINTENANCE_CRON = "10 1 * * *"; /** The scheduler surface this helper needs — structural so it doesn't couple to the job queue. */ interface SchedulerLike { schedule(db: DB, spec: { readonly name: string; readonly cron: string; }): Promise; } export declare function scheduleTracePartitionMaintenance(scheduler: SchedulerLike, db: DB, cron?: string): Promise; export {}; //# sourceMappingURL=schedule.d.ts.map