declare const schema: { $schema: string; type: string[]; properties: { carRentalData: { anyOf: ({ $ref: string; type?: undefined; } | { type: string; $ref?: undefined; })[]; }; }; additionalProperties: boolean; definitions: { carRentalData: { type: string; properties: { agreementNumber: { anyOf: { type: string; }[]; }; cardholderNotified: { anyOf: { type: string; }[]; }; chargesAmount: { anyOf: { type: string; }[]; }; chargesCategory: { anyOf: { type: string; }[]; }; distanceMeasure: { anyOf: { type: string; }[]; }; distanceUnit: { anyOf: { type: string; }[]; }; driverIdentificationNumber: { anyOf: { type: string; }[]; }; driverTaxNumber: { anyOf: { type: string; }[]; }; pickup: { anyOf: ({ $ref: string; type?: undefined; } | { type: string; $ref?: undefined; })[]; }; rentalRateAmount: { anyOf: { type: string; }[]; }; rentalRateType: { anyOf: { type: string; }[]; }; renterName: { anyOf: { type: string; }[]; }; return: { anyOf: ({ $ref: string; type?: undefined; } | { type: string; $ref?: undefined; })[]; }; taxExemptIndicator: { anyOf: { type: string; }[]; }; tollFreeNumber: { anyOf: { type: string; }[]; }; vehicle: { anyOf: ({ $ref: string; type?: undefined; } | { type: string; $ref?: undefined; })[]; }; }; additionalProperties: boolean; }; carRentalPickupReturnData: { type: string; properties: { address: { anyOf: { type: string; }[]; }; city: { anyOf: { type: string; }[]; }; country: { anyOf: { type: string; }[]; }; date: { anyOf: { type: string; }[]; }; location: { anyOf: { type: string; }[]; }; postcode: { anyOf: { type: string; }[]; }; state: { anyOf: { type: string; }[]; }; }; additionalProperties: boolean; }; carRentalVehicleData: { type: string; properties: { classId: { anyOf: { type: string; }[]; }; identificationNumber: { anyOf: { type: string; }[]; }; }; additionalProperties: boolean; }; }; }; export default schema;