import { isly } from "isly"; import { CountryCode } from "../CountryCode"; export type Generic = { countryCode: CountryCode.Alpha2; street: string; zipCode: string; city: string; county?: string; state?: string; }; export declare namespace Generic { const type: import("isly/dist/types/Object/Class").Class, is: (value: Generic | any) => value is Generic, flawed: (value: Generic | any) => isly.Flaw | false; }