import { z } from "zod";
import { StructuredTool } from "langchain/tools";
import { SeiAgentKit } from "../../agent";
declare const SeiMintTakaraInputSchema: z.ZodObject<{
    ticker: z.ZodString;
    mintAmount: z.ZodString;
}, "strip", z.ZodTypeAny, {
    mintAmount: string;
    ticker: string;
}, {
    mintAmount: string;
    ticker: string;
}>;
/**
 * LangChain tool for minting Takara tokens
 */
export declare class SeiMintTakaraTool extends StructuredTool<typeof SeiMintTakaraInputSchema> {
    private readonly seiKit;
    name: string;
    description: string;
    schema: z.ZodObject<{
        ticker: z.ZodString;
        mintAmount: z.ZodString;
    }, "strip", z.ZodTypeAny, {
        mintAmount: string;
        ticker: string;
    }, {
        mintAmount: string;
        ticker: string;
    }>;
    constructor(seiKit: SeiAgentKit);
    protected _call({ ticker, mintAmount }: z.infer<typeof SeiMintTakaraInputSchema>): Promise<string>;
}
export {};
//# sourceMappingURL=mint.d.ts.map