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