import { z } from 'zod';
import { Storage } from '../../storage/storage.js';
/**
 * Delete a project and all associated tasks and subtasks
 *
 * @param storage - Storage instance
 * @returns MCP tool handler for deleting projects
 */
export declare function createDeleteProjectTool(storage: Storage): {
    name: string;
    description: string;
    inputSchema: {
        id: z.ZodString;
        confirm: z.ZodBoolean;
    };
    handler: ({ id, confirm }: {
        id: string;
        confirm: boolean;
    }) => Promise<{
        content: {
            type: "text";
            text: string;
        }[];
        isError: boolean;
    } | {
        content: {
            type: "text";
            text: string;
        }[];
        isError?: undefined;
    }>;
};
