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