export declare const listCurrencies: () => Promise; export declare const getExchangeRange: (fromSymbol: string, fromNetwork: string) => Promise; export declare const getEstimatedExchange: (sourceChain: string, sourceNetwork: string, amount: number) => Promise; export declare const setTransactionHash: (id: string, tx_hash: string) => Promise; export declare const createExchange: (fromSymbol: string, fromNetwork: string, toSymbol: string, toNetwork: string, amount: number, address: string) => Promise;