declare const schema: { $schema: string; type: string[]; properties: { amountOfMoney: { anyOf: ({ $ref: string; type?: undefined; } | { type: string; $ref?: undefined; })[]; }; cardSource: { 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; }; cardSource: { type: string; properties: { card: { anyOf: ({ $ref: string; type?: undefined; } | { type: string; $ref?: undefined; })[]; }; encryptedCustomerInput: { anyOf: { type: string; }[]; }; hostedTokenizationId: { anyOf: { type: string; }[]; }; token: { anyOf: { type: string; }[]; }; }; additionalProperties: boolean; }; surchargeCalculationCard: { type: string; properties: { cardNumber: { anyOf: { type: string; }[]; }; paymentProductId: { anyOf: { type: string; }[]; }; }; additionalProperties: boolean; }; }; }; export default schema;