import { StructuredTool } from "langchain/tools";
import { SeiAgentKit } from "../../agent";
import { OrderBookReturnType } from "../../../node_modules/citrex-sdk/lib/types.js";
import { z } from "zod";
declare const CitrexGetOrderBookInputSchema: z.ZodObject<{
    symbol: z.ZodString;
}, "strip", z.ZodTypeAny, {
    symbol: string;
}, {
    symbol: string;
}>;
export declare class SeiCitrexGetOrderBookTool extends StructuredTool<typeof CitrexGetOrderBookInputSchema> {
    private readonly seiKit;
    name: string;
    description: string;
    schema: z.ZodObject<{
        symbol: z.ZodString;
    }, "strip", z.ZodTypeAny, {
        symbol: string;
    }, {
        symbol: string;
    }>;
    constructor(seiKit: SeiAgentKit);
    _call(input: z.infer<typeof CitrexGetOrderBookInputSchema>): Promise<OrderBookReturnType | undefined>;
}
export {};
//# sourceMappingURL=getOrderBook.d.ts.map