import type { ExportFailure, ExportOptions, ExportResult } from "./export.js"; export declare const DERIVATION_SCHEMA = "humanish.redacted-derivation.v1"; /** Internal fault-injection seam. Never overrides reads, redaction or verification. */ export interface BundleExportHooks { beforePublish?: () => Promise; } export declare function exportRedactedBundle(cwdInput: string, runInput: string, options: ExportOptions, hooks?: BundleExportHooks): Promise;