export interface FI { street: string; zipCode: string; city: string; countryCode: "FI"; } export declare namespace FI { function is(value: any | FI): value is FI; function create(): FI; }