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