import { QuantityInterface, Address } from '@melonproject/token-math';
import { WithAddressQueryExecute } from '../../../../utils/solidity/withContractAddressQuery';
interface IncreaseApprovalArgs {
    howMuch: QuantityInterface;
    spender: Address;
}
declare type IncreaseApprovalResult = boolean;
declare const increaseApproval: WithAddressQueryExecute<IncreaseApprovalArgs, IncreaseApprovalResult>;
export { increaseApproval };
