import { QuantityInterface, Address } from '@melonproject/token-math';
import { WithAddressQueryExecute } from '../../../../utils/solidity/withContractAddressQuery';
interface TransferFromArgs {
    howMuch: QuantityInterface;
    from: Address;
    to: Address;
}
declare type TransferFromResult = boolean;
declare const transferFrom: WithAddressQueryExecute<TransferFromArgs, TransferFromResult>;
export { transferFrom };
