import type { ParsedDesignResourceHandoffInputV1 } from "./design-resource-handoff-input-types.js"; import type { DesignResourceHandoffResourceV1, DesignResourceHandoffTargetV1 } from "./design-resource-handoff-types.js"; type BundleFailure = (code: string, detail: string) => never; export interface StagedDesignResourceHandoffDraft { bytes: Buffer; parsed: ParsedDesignResourceHandoffInputV1; target: DesignResourceHandoffTargetV1; manifest_resource: DesignResourceHandoffResourceV1; } export declare function stageDesignResourceHandoffDraft(repository: string, draftDirectory: string, temporaryDirectory: string, entryName: string, maxBytes: number, fail: BundleFailure): Promise; export {};