import { CommonPostAddress } from '../common/CommonPostAddress.js';

declare class Address extends CommonPostAddress {
    private static readonly REG_EX_ADDRESS_LINE;
    addressLine1: string;
    addressLine2?: string | null;
    addressLine3?: string | null;
    addressLine4?: string | null;
    ukResident?: string | null;
}

export { Address };
