declare const schema: { $schema: string; type: string[]; properties: { card: { anyOf: ({ $ref: string; type?: undefined; } | { type: string; $ref?: undefined; })[]; }; currencyCode: { anyOf: { type: string; }[]; }; paymentProductId: { anyOf: { type: string; }[]; }; schemeReferenceData: { anyOf: { type: string; }[]; }; tokenId: { anyOf: { type: string; }[]; }; transactionLinkIdentifier: { anyOf: { type: string; }[]; }; }; additionalProperties: boolean; definitions: { cardDataWithoutCvv: { type: string; properties: { cardNumber: { anyOf: { type: string; }[]; }; cardholderName: { anyOf: { type: string; }[]; }; expiryDate: { anyOf: { type: string; }[]; }; }; additionalProperties: boolean; }; }; }; export default schema;