import { CountryEnum } from '../../nichandle/CountryEnum';
/** Representation of a Contact */
export interface Address {
    /** City */
    city: string;
    /** Country */
    country: CountryEnum;
    /** First line of the address */
    line1: string;
    /** Second line of the address */
    line2?: string;
    /** Third line of the address */
    line3?: string;
    /** Other details */
    otherDetails?: string;
    /** Province name */
    province?: string;
    /** Zipcode */
    zip?: string;
}
//# sourceMappingURL=Address.d.ts.map