import { Address } from "viem";
export type Coin = {
    name: string;
    symbol: string;
    icon: string;
    address: Address | null;
    id: string;
    decimals?: number;
};
export declare const COLLATERALS: {
    [key: string]: Coin;
};
export declare const SYMBOLS_ALL: string[];
