import { ChainId } from '@koyofinance/core-sdk';
import { REFERENCE_ASSETS } from '../referenceAssets';
export declare const coins: ReadonlyArray<RawCoin>;
export interface RawCoin {
    id: string;
    coingeckoId: string;
    chainId: ChainId;
    type: REFERENCE_ASSETS;
    name: string;
    symbol: string;
    decimals: 18 | 6;
    address: string;
}
//# sourceMappingURL=coins.d.ts.map