import type { Tool } from '@modelcontextprotocol/sdk/types.js'; import type { AuthContext } from '../types.js'; export declare const addTaskTool: Tool; export declare function handleAddTask(auth: AuthContext, args: any): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: never; }>; export declare const updateTaskStatusTool: Tool; export declare function handleUpdateTaskStatus(auth: AuthContext, args: any): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: never; }>; export declare const updateTaskTool: Tool; export declare function handleUpdateTask(auth: AuthContext, args: any): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: never; }>; export declare const breakDownTaskTool: Tool; export declare function handleBreakDownTask(auth: AuthContext, args: any): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: never; }>; export declare const listTasksTool: Tool; export declare function handleListTasks(auth: AuthContext, args: any): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: never; }>; //# sourceMappingURL=tasks.d.ts.map