import { z } from "zod"; export declare function describeActivation(tier: unknown): string; export declare function getActivateLicenseConfig(): { description: string; inputSchema: { token: z.ZodString; }; }; export declare function handleActivateLicense({ token }: { token: string; }): Promise<{ content: { type: "text"; text: string; }[]; isError: boolean; } | { content: { type: "text"; text: string; }[]; isError?: undefined; }>; export declare function getDeleteAccountConfig(): { description: string; inputSchema: { confirm: z.ZodOptional; }; }; export declare function handleDeleteAccount({ confirm }: { confirm?: string; }): Promise<{ content: { type: "text"; text: string; }[]; isError?: undefined; } | { content: { type: "text"; text: string; }[]; isError: boolean; }>; import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; export declare function registerAccountTools(server: McpServer): void; //# sourceMappingURL=accountTools.d.ts.map