/**
 * Daily Archive Settlement Backfill
 *
 * Catches any archived forecasts that were missed by the resolve-forecasts worker.
 * Looks for pending archived forecasts older than 4 hours and tries to settle them.
 *
 * Usage: npx tsx src/workers/settle-archives.ts
 * Cron: 0 7 * * * (2 AM ET daily)
 */
export declare function shouldVoidStaleArchive(startsAt: string | Date, now?: Date): boolean;
export declare function runArchiveSettlementBackfill(options?: {
    refreshBuckets?: boolean;
    closePool?: boolean;
}): Promise<void>;
//# sourceMappingURL=settle-archives.d.ts.map