import { SeiAgentKit } from "../../agent";
import { TwitterPostTweetReplySchema } from "../../tools";
import { StructuredTool } from "langchain/tools";
import { z } from "zod";
export declare class SeiPostTweetReplyTool extends StructuredTool {
    private readonly seiKit;
    name: string;
    description: string;
    schema: any;
    constructor(seiKit: SeiAgentKit);
    _call(args: z.infer<typeof TwitterPostTweetReplySchema>): Promise<string>;
}
//# sourceMappingURL=postTweetReply.d.ts.map