export declare const HARNERY_RECEIPT_SEGMENT_MANIFEST_SCHEMA: "harnery.storage-maintenance-receipt-segment/v1"; export interface HarneryReceiptConsolidationPlan { schema: typeof HARNERY_RECEIPT_SEGMENT_MANIFEST_SCHEMA; segment_id: string; created_at: string; source_count: number; source_bytes: number; source_paths_sha256: string; payload_sha256: string; payload_bytes: number; applied: boolean; } /** * Losslessly packs immutable maintenance receipts. The default is a pure plan; * source replacement requires both an exact consolidation id and `yes`. */ export declare function consolidateMutationReceipts(coordRoot: string, options?: { now?: Date; threshold?: number; yes?: boolean; consolidation_id?: string; }): HarneryReceiptConsolidationPlan | undefined; //# sourceMappingURL=receipts.d.ts.map