import { StructuredTool } from "langchain/tools";
import { SeiAgentKit } from "../../agent";
import { CancelOrderReturnType } from "citrex-sdk/types";
import { z } from "zod";
declare const CitrexCancelOrderInputSchema: z.ZodObject<{
    orderId: z.ZodString;
    productId: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
    productId: number;
    orderId: string;
}, {
    productId: number;
    orderId: string;
}>;
export declare class SeiCitrexCancelOrderTool extends StructuredTool {
    private readonly seiKit;
    name: string;
    description: string;
    schema: any;
    constructor(seiKit: SeiAgentKit);
    _call(input: z.infer<typeof CitrexCancelOrderInputSchema>): Promise<CancelOrderReturnType | undefined>;
}
export {};
//# sourceMappingURL=cancelOrder.d.ts.map