export declare class Price {
    getSolacePrice(): Promise<{
        chainId: number;
        price: number;
    }[]>;
    getMainnetPrices(rpcUrl?: string): Promise<{
        [key: string]: number;
    }>;
    getPolygonPrices(rpcUrl?: string): Promise<{
        [key: string]: number;
    }>;
    getAuroraPrices(rpcUrl?: string): Promise<{
        [key: string]: number;
    }>;
    getFantomPrices(rpcUrl?: string): Promise<{
        [key: string]: number;
    }>;
    getCoinGeckoTokenPrices(): Promise<{
        [x: string]: number;
    }>;
    getMirrorCoingeckoPrices(): Promise<{
        [key: string]: number;
    }>;
    getPriceInfo(): Promise<any>;
}
