declare const schema: { $schema: string; type: string[]; properties: { amount: { anyOf: { type: string; }[]; }; isFinal: { anyOf: { type: string; }[]; }; lineItemDetails: { anyOf: ({ type: string; items: { $ref: string; }; uniqueItems: boolean; } | { type: string; items?: undefined; uniqueItems?: undefined; })[]; }; operationReferences: { anyOf: ({ $ref: string; type?: undefined; } | { type: string; $ref?: undefined; })[]; }; references: { anyOf: ({ $ref: string; type?: undefined; } | { type: string; $ref?: undefined; })[]; }; shipping: { anyOf: ({ $ref: string; type?: undefined; } | { type: string; $ref?: undefined; })[]; }; }; additionalProperties: boolean; definitions: { lineItemDetail: { type: string; properties: { discountAmount: { anyOf: { type: string; }[]; }; lineItemId: { anyOf: { type: string; }[]; }; quantity: { anyOf: { type: string; }[]; }; }; additionalProperties: boolean; }; operationPaymentReferences: { type: string; properties: { merchantComment: { anyOf: { type: string; }[]; }; merchantReconciliationReference: { anyOf: { type: string; }[]; }; merchantReference: { anyOf: { type: string; }[]; }; operationGroupReference: { anyOf: { type: string; }[]; }; softDescriptor: { anyOf: { type: string; }[]; }; structuredCreditorReference: { anyOf: { type: string; }[]; }; }; additionalProperties: boolean; }; paymentReferences: { type: string; properties: { merchantComment: { anyOf: { type: string; }[]; }; merchantParameters: { anyOf: { type: string; }[]; }; merchantReconciliationReference: { anyOf: { type: string; }[]; }; merchantReference: { anyOf: { type: string; }[]; }; operationGroupReference: { anyOf: { type: string; }[]; }; softDescriptor: { anyOf: { type: string; }[]; }; structuredCreditorReference: { anyOf: { type: string; }[]; }; }; additionalProperties: boolean; }; shippingDetail: { type: string; properties: { shippingCost: { anyOf: { type: string; }[]; }; shippingCostTax: { anyOf: { type: string; }[]; }; }; additionalProperties: boolean; }; }; }; export default schema;