declare const schema: { $schema: string; type: string[]; properties: { amountOfMoney: { anyOf: ({ $ref: string; type?: undefined; } | { type: string; $ref?: undefined; })[]; }; }; additionalProperties: boolean; definitions: { amountOfMoney: { type: string; properties: { amount: { anyOf: { type: string; }[]; }; currencyCode: { anyOf: { type: string; }[]; }; }; additionalProperties: boolean; }; }; }; export default schema;