import type { ChainConfig, CosmosChainData, DenomData, DenomTraceData, ElementsConfig, GasPriceStep } from './types'; export declare const getDenoms: () => Promise>; export declare const getChains: () => Promise>>; export declare const getGasPriceSteps: () => Promise>; export declare const getGasAdjustment: () => Promise>; export declare const getChainsConfig: () => Promise; export declare const getGasEstimates: () => Promise>; export declare const getNativeFeeDenoms: () => Promise>>; export declare const getRestUrls: () => Promise>; export declare const getRpcUrls: () => Promise>; export declare const getNoRouteDenoms: () => Promise>; export declare const getFeeAddresses: () => Promise>; export declare const getFees: () => Promise<{ default: number; swapfast: number; pairs: Record<`${string}+${string}`, number>; }>; export declare const getElementsConfig: () => Promise; export declare const getDenomTrace: () => Promise>;