import type { Tool } from '@modelcontextprotocol/sdk/types.js'; import type { AuthContext } from '../types.js'; export declare const manualProjectSetupTool: Tool; export declare const autoProjectSetupTool: Tool; export declare const manualResearchSetupTool: Tool; export declare const autoResearchSetupTool: Tool; export declare const captureIdeaTool: Tool; export declare const ideaKickoffTool: Tool; export declare function handleIdeaKickoff(_auth: AuthContext, args: Record): Promise<{ content: { type: "text"; text: string; }[]; }>; export declare function handleAutoProjectSetup(auth: AuthContext, args: Record): Promise<{ content: { type: "text"; text: string; }[]; isError: boolean; } | { content: { type: "text"; text: string; }[]; isError?: never; }>; export declare function handleManualResearchSetup(_auth: AuthContext, _args: Record): Promise<{ content: { type: "text"; text: string; }[]; }>; export declare function handleAutoResearchSetup(auth: AuthContext, args: Record): Promise<{ content: { type: "text"; text: string; }[]; isError: boolean; } | { content: { type: "text"; text: string; }[]; isError?: never; }>; export declare function handleCaptureIdea(auth: AuthContext, args: Record): Promise<{ content: { type: "text"; text: string; }[]; isError: boolean; } | { content: { type: "text"; text: string; }[]; isError?: never; }>; //# sourceMappingURL=start.d.ts.map