import { ChainService } from '../../../service/chainService'; import { UnsignedTransaction } from '../../../typings/unsignedTransaction'; import { PlaceOrderArgs } from '../../../typings/args'; interface GenericPlaceOrderArgs extends PlaceOrderArgs { type: 'bid' | 'ask'; } export declare const placeOrder: (service: ChainService) => (args: GenericPlaceOrderArgs) => Promise; export {};