export declare const description: any;
/**
*
* @param flag Country code
* @returns {string} Fullname of country
*/
declare const name: (flag: string) => string;
export default name;
