import { z } from 'zod'; import { McpServer, RegisteredTool } from '@modelcontextprotocol/sdk/server/mcp.js'; import { McpLogger } from '../../utils/logger.js'; import { TextContentResponse } from '../../types.js'; import { Tool } from '../../Tool.js'; declare const createTestAccountInputSchema: z.ZodObject<{ absoluteCurrentWorkingDirectory: z.ZodString; configPath: z.ZodOptional; name: z.ZodOptional; description: z.ZodOptional; marketingLevel: z.ZodOptional>; opsLevel: z.ZodOptional>; serviceLevel: z.ZodOptional>; salesLevel: z.ZodOptional>; contentLevel: z.ZodOptional>; commerceLevel: z.ZodOptional>; }, z.core.$strip>; export type CreateTestAccountInputSchema = z.infer; export declare class CreateTestAccountTool extends Tool { constructor(mcpServer: McpServer, logger: McpLogger); handler({ absoluteCurrentWorkingDirectory, name, description, marketingLevel, opsLevel, serviceLevel, salesLevel, contentLevel, commerceLevel, configPath, }: CreateTestAccountInputSchema): Promise; register(): RegisteredTool; } export {};