declare const schema: { $schema: string; type: string[]; properties: { card: { anyOf: ({ $ref: string; type?: undefined; } | { type: string; $ref?: undefined; })[]; }; encryptedCustomerInput: { anyOf: { type: string; }[]; }; paymentProductId: { anyOf: { type: string; }[]; }; }; additionalProperties: boolean; definitions: { card: { type: string; properties: { cardNumber: { anyOf: { type: string; }[]; }; cardholderName: { anyOf: { type: string; }[]; }; cvv: { anyOf: { type: string; }[]; }; expiryDate: { anyOf: { type: string; }[]; }; }; additionalProperties: boolean; }; tokenCardSpecificInput: { type: string; properties: { data: { anyOf: ({ $ref: string; type?: undefined; } | { type: string; $ref?: undefined; })[]; }; }; additionalProperties: boolean; }; tokenData: { type: string; properties: { card: { anyOf: ({ $ref: string; type?: undefined; } | { type: string; $ref?: undefined; })[]; }; cobrandSelectionIndicator: { anyOf: { type: string; }[]; }; }; additionalProperties: boolean; }; }; }; export default schema;