import { CountryCode } from "isoly"; export interface General { address1?: string; address2?: string; address3?: string; street?: string; zipCode?: string; city?: string; state?: string; countryCode: CountryCode.Alpha2 | ""; } export declare namespace General { function is(value: any | General): value is General; function create(): General; }