export declare const flagPrefix = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAA";
export interface Country {
    code?: string;
    symbol_native?: string;
    name?: string;
    country?: string;
    countryCode?: string;
    flag?: string;
}
export declare const currencyCodes: {
    code: string;
    symbol_native: string;
    name: string;
    country: string;
    countryCode: string;
    flag: string;
}[];
