export declare class Country {
    code: string;
    constructor(code: string);
    getName(): string;
}
