import { SeiAgentKit } from "../../agent";
import { TwitterAccountDetailsSchema } from "../../tools";
import { StructuredTool } from "langchain/tools";
import { z } from "zod";
export declare class SeiGetAccountDetailsTool extends StructuredTool<typeof TwitterAccountDetailsSchema> {
    private readonly seiKit;
    name: string;
    description: string;
    schema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
    constructor(seiKit: SeiAgentKit);
    _call(): Promise<string>;
}
//# sourceMappingURL=getAccountDetails.d.ts.map