import { z } from 'zod';
import { Storage } from '../../storage/storage.js';
/**
 * Create a new project
 *
 * @param storage - Storage instance
 * @returns MCP tool handler for creating projects
 */
export declare function createCreateProjectTool(storage: Storage): {
    name: string;
    description: string;
    inputSchema: {
        name: z.ZodString;
        description: z.ZodString;
    };
    handler: ({ name, description }: {
        name: string;
        description: string;
    }) => Promise<{
        content: {
            type: "text";
            text: string;
        }[];
        isError: boolean;
    } | {
        content: {
            type: "text";
            text: string;
        }[];
        isError?: undefined;
    }>;
};
