import { Address, QuantityInterface } from '@melonproject/token-math';
import { Exchanges } from '../../../../Contracts';
import { Environment } from '../../../../utils/environment/Environment';
declare const isTakePermitted: (environment: Environment, tradingContractAddress: Address, exchangeName: Exchanges, makerQuantity: QuantityInterface, takerQuantity: QuantityInterface, fillTakerQuantity: QuantityInterface, id?: number) => Promise<boolean>;
export { isTakePermitted };
