declare class country { countryCode: string; value: string; label: string; } declare const countrylist: { countryCode: string; value: string; label: string; }[]; export { countrylist, country };