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