import type { DeliveryContractV2 } from "./long-task-delivery-types.js"; export interface DeliveryContractStructureValidationOptions { allowDeferredDesignComponentBindingClosure?: boolean; } export declare function validateDeliveryContractStructure(contract: DeliveryContractV2, options?: DeliveryContractStructureValidationOptions): void; export declare function deliveryContractStructureDiagnostics(contract: DeliveryContractV2, options?: DeliveryContractStructureValidationOptions): string[];