import { z } from 'zod';
declare const inputSchema: z.ZodObject<{
    name: z.ZodString;
    apiKey: z.ZodString;
    isDefault: z.ZodOptional<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
    name: string;
    apiKey: string;
    isDefault?: boolean | undefined;
}, {
    name: string;
    apiKey: string;
    isDefault?: boolean | undefined;
}>;
export declare const addAccountTool: {
    name: string;
    description: string;
    inputSchema: z.ZodObject<{
        name: z.ZodString;
        apiKey: z.ZodString;
        isDefault: z.ZodOptional<z.ZodBoolean>;
    }, "strip", z.ZodTypeAny, {
        name: string;
        apiKey: string;
        isDefault?: boolean | undefined;
    }, {
        name: string;
        apiKey: string;
        isDefault?: boolean | undefined;
    }>;
    handler: (args: z.infer<typeof inputSchema>) => Promise<{
        content: {
            type: string;
            text: string;
        }[];
    }>;
};
export {};
//# sourceMappingURL=add-account.d.ts.map