export declare class CountryModel { id: number; isoCode: string; label: string; constructor(id?: number, isoCode?: string, label?: string); fromJSON(json: any): this; }