/**
 * Implementation of the create_spec command for the Idea Honing Tool
 *
 * This file contains the main command execution logic for creating structured
 * specification documents from raw ideas, with deep codebase analysis and
 * project rule integration.
 */
import { z } from "zod";
import { createSpecSchema } from "./index.js";
export declare function createSpec(params: z.infer<typeof createSpecSchema>): Promise<{
    content: {
        type: "text";
        text: string;
    }[];
}>;
