import { useTransferArgs } from './types'; /** * React hook to get simulated fee data for a cosmos MsgSend or an IBC transfer */ export declare const useCosmosTransferFees: ({ amount, asset, destinationAddress, destinationChain, sourceChain, userAddress, walletClient, enabled, isMainnet }: useTransferArgs) => { readonly gasFees: import("./use-transfer-gas-fee").TransferFeeResult | undefined; readonly isGasFeesLoading: boolean; readonly gasFeesError: any; };