import { type BundleDecision, type DecisionBundle } from "../../../schema/src/decisions/bundle.js";
export type ReportRef = {
    id: string;
    revision: string;
    findingSetHash: string;
};
export type ExportBundleInput = {
    projectIdentity: string;
    configHash: string;
    report: ReportRef;
    decisions: BundleDecision[];
    nonce: string;
    expiresAt: string;
};
export declare function exportBundle(input: ExportBundleInput): DecisionBundle;
//# sourceMappingURL=export.d.ts.map