MsgPlaceOrders: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): MsgPlaceOrders;
    encode(message: MsgPlaceOrders, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: MsgPlaceOrdersAmino): MsgPlaceOrders;
    fromAminoMsg(object: MsgPlaceOrdersAminoMsg): MsgPlaceOrders;
    fromPartial(object: {
        contractAddr?: string;
        creator?: string;
        funds?: {
            amount?: string;
            denom?: string;
        }[];
        orders?: {
            account?: string;
            assetDenom?: string;
            contractAddr?: string;
            data?: string;
            id?: bigint;
            nominal?: string;
            orderType?: OrderType;
            positionDirection?: PositionDirection;
            price?: string;
            priceDenom?: string;
            quantity?: string;
            status?: OrderStatus;
            statusDescription?: string;
            triggerPrice?: string;
            triggerStatus?: boolean;
        }[];
    }): MsgPlaceOrders;
    fromProtoMsg(message: MsgPlaceOrdersProtoMsg): MsgPlaceOrders;
    toAmino(message: MsgPlaceOrders): MsgPlaceOrdersAmino;
    toProto(message: MsgPlaceOrders): Uint8Array;
    toProtoMsg(message: MsgPlaceOrders): MsgPlaceOrdersProtoMsg;
}