export interface FullContractSchemaType { type: 'object'; properties: { contractId: { const: string; }; contractType: { const: 'cloudFormation'; }; name: { const: Name; }; }; required: ['contractId', 'name', 'contractType']; additionalProperties: false; [key: string]: unknown; } //# sourceMappingURL=fullContract.d.ts.map