import { StructuredTool } from "langchain/tools";
import { SeiAgentKit } from "../../agent";
import { z } from "zod";
declare const StakeInputSchema: z.ZodObject<{
    amount: z.ZodString;
}, "strip", z.ZodTypeAny, {
    amount: string;
}, {
    amount: string;
}>;
export declare class SeiStakeTool extends StructuredTool<typeof StakeInputSchema> {
    private readonly seiKit;
    name: string;
    description: string;
    schema: z.ZodObject<{
        amount: z.ZodString;
    }, "strip", z.ZodTypeAny, {
        amount: string;
    }, {
        amount: string;
    }>;
    constructor(seiKit: SeiAgentKit);
    protected _call(input: z.infer<typeof StakeInputSchema>): Promise<string>;
}
export {};
//# sourceMappingURL=stake.d.ts.map