import { ICountryName, IDescription, IName } from '../../../'; export interface IBillingAddress { city: IName; country: ICountryName; countryName: ICountryName; firstLine: IDescription; secondLine?: IDescription; postalCode: string; state: IName; } export declare const isIBillingAddress: (t: any) => t is IBillingAddress;