import { QuantityInterface, Address } from '@melonproject/token-math';
export declare type TakeOasisDexOrderResult = any;
export interface TakeOasisDexOrderArgs {
    id: number;
    makerQuantity: QuantityInterface;
    takerQuantity: QuantityInterface;
    maker: Address;
    fillTakerQuantity?: QuantityInterface;
}
declare const takeOasisDexOrder: import("../../../../utils/solidity/transactionFactory").EnhancedExecute<TakeOasisDexOrderArgs, any>;
export { takeOasisDexOrder };
