/**
 * Tool handlers for Apple Developer Documentation MCP Server
 */
/**
 * Tool handler function type
 */
export type ToolHandler = (args: unknown, server: any) => Promise<{
    content: Array<{
        type: string;
        text: string;
    }>;
    isError?: boolean;
}>;
/**
 * Map of tool names to their handlers
 */
export declare const toolHandlers: Record<string, ToolHandler>;
/**
 * Handle tool call with the appropriate handler
 */
export declare function handleToolCall(toolName: string, args: unknown, server: any): Promise<{
    content: Array<{
        type: string;
        text: string;
    }>;
    isError?: boolean;
}>;
//# sourceMappingURL=handlers.d.ts.map