import { QuantityInterface, Address } from '@melonproject/token-math';
export declare type MakeOasisDexOrderResult = {
    buy: QuantityInterface;
    sell: QuantityInterface;
    maker: Address;
    id: string;
    timestamp: string;
};
export interface MakeOasisDexOrderArgs {
    makerQuantity: QuantityInterface;
    takerQuantity: QuantityInterface;
}
declare const makeOasisDexOrder: import("../../../../utils/solidity/transactionFactory").EnhancedExecute<MakeOasisDexOrderArgs, MakeOasisDexOrderResult>;
export { makeOasisDexOrder };
