export declare type CurrencyProps = {
    country: string;
    name: string;
    code: string;
    symbol: string;
};
