import { Property } from '../types'; import { ObjectToXmlTransformer } from './transformer'; export declare class PropertyTransformer implements ObjectToXmlTransformer { item(object: Property): { AccountNo: string; AddressLine1: string; AddressLine2: string; AmountOfEquity: number; Applicant: number; City: string; Country: string; County: string; DebtorShare: number; HomeAddress: boolean; IncludeEquity: boolean; LastRemortgaged: string; MonthsInProperty: number; MortgageOutstanding: number; Owner: string; Ownership: string; Postcode: string; PreviousAddress: boolean; PrimaryLender: string; PropertyInNameOf: string; PropertyType: string; PropertyValue: number; SecuredLoan: number; ThirdPartyOwner: string; TitleNumber: string; YearsInProperty: number; YearsRemaining: number; }; items(object: Property[]): { Properties?: undefined; } | { Properties: { PropertyRequest: { AccountNo: string; AddressLine1: string; AddressLine2: string; AmountOfEquity: number; Applicant: number; City: string; Country: string; County: string; DebtorShare: number; HomeAddress: boolean; IncludeEquity: boolean; LastRemortgaged: string; MonthsInProperty: number; MortgageOutstanding: number; Owner: string; Ownership: string; Postcode: string; PreviousAddress: boolean; PrimaryLender: string; PropertyInNameOf: string; PropertyType: string; PropertyValue: number; SecuredLoan: number; ThirdPartyOwner: string; TitleNumber: string; YearsInProperty: number; YearsRemaining: number; }[]; }; }; }