declare const schema: { $schema: string; type: string[]; properties: { alias: { anyOf: { type: string; }[]; }; customer: { anyOf: ({ $ref: string; type?: undefined; } | { type: string; $ref?: undefined; })[]; }; customerReference: { anyOf: { type: string; }[]; }; language: { anyOf: { type: string; }[]; }; recurrenceType: { anyOf: { type: string; }[]; }; returnUrl: { anyOf: { type: string; }[]; }; signatureType: { anyOf: { type: string; }[]; }; uniqueMandateReference: { anyOf: { type: string; }[]; }; }; additionalProperties: boolean; definitions: { bankAccountIban: { type: string; properties: { iban: { anyOf: { type: string; }[]; }; }; additionalProperties: boolean; }; mandateAddress: { type: string; properties: { city: { anyOf: { type: string; }[]; }; countryCode: { anyOf: { type: string; }[]; }; houseNumber: { anyOf: { type: string; }[]; }; street: { anyOf: { type: string; }[]; }; zip: { anyOf: { type: string; }[]; }; }; additionalProperties: boolean; }; mandateContactDetails: { type: string; properties: { emailAddress: { anyOf: { type: string; }[]; }; phoneNumber: { anyOf: { type: string; }[]; }; }; additionalProperties: boolean; }; mandateCustomer: { type: string; properties: { bankAccountIban: { anyOf: ({ $ref: string; type?: undefined; } | { type: string; $ref?: undefined; })[]; }; companyName: { anyOf: { type: string; }[]; }; contactDetails: { anyOf: ({ $ref: string; type?: undefined; } | { type: string; $ref?: undefined; })[]; }; mandateAddress: { anyOf: ({ $ref: string; type?: undefined; } | { type: string; $ref?: undefined; })[]; }; personalInformation: { anyOf: ({ $ref: string; type?: undefined; } | { type: string; $ref?: undefined; })[]; }; }; additionalProperties: boolean; }; mandatePersonalInformation: { type: string; properties: { name: { anyOf: ({ $ref: string; type?: undefined; } | { type: string; $ref?: undefined; })[]; }; title: { anyOf: { type: string; }[]; }; }; additionalProperties: boolean; }; mandatePersonalName: { type: string; properties: { firstName: { anyOf: { type: string; }[]; }; surname: { anyOf: { type: string; }[]; }; }; additionalProperties: boolean; }; }; }; export default schema;