export type CoinType = {
    name: string;
    symbol: string;
    decimals: number;
    address: string;
    chainID: number;
    isNative?: boolean;
    noIcon?: boolean;
    totalSupply?: string;
    icon?: string;
};
export declare const coins: CoinType[];
export declare const findCoinByAddress: (address: string) => CoinType;
