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