import { FeedPrices } from '../types/FeedPrices'; export declare const getBaseCurrencyMsg: () => { base_currency: {}; }; export declare const getStableCurrencyMsg: () => { stable_currency: {}; }; export declare const getBasePriceMsg: (ticker: string) => { base_price: { currency: string; }; }; export declare const getStablePriceMsg: (ticker: string) => { stable_price: { currency: string; }; }; export declare const getPricesMsg: () => { prices: {}; }; export declare const getCurrencyPairsMsg: () => { supported_currency_pairs: {}; }; export declare const getCurrenciesMsg: () => { currencies: {}; }; export declare const getFeedersMsg: () => { feeders: {}; }; export declare const isFeederMsg: (feederWalletAddress: string) => { is_feeder: { address: string; }; }; export declare const getConfigMsg: () => { config: {}; }; export declare const getSwapPathMsg: (fromCurrencyTicker: string, toCurrencyTicker: string) => { swap_path: { from: string; to: string; }; }; export declare const getSwapTreeMsg: () => { swap_tree: {}; }; export declare const feedPricesMsg: (feedPrices: FeedPrices) => { feed_prices: FeedPrices; };