export declare class Country {
    name: string;
    code: string;
    vatPrefix?: string;
}
