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