/**
* Get Started Tool
*
* Intelligent entry point for the MCP server that performs:
* 1. State Detection - Understand project state automatically
* 2. Intent Inference - Determine what user wants to do
* 3. Guided Execution - Provide exact tool calls with real values
*/
export type Intent = 'explore' | 'add_content' | 'update_schema' | 'convert' | 'deploy';
export interface GetStartedInput {
intent?: Intent;
projectId?: string;
}
/**
* Get Started - Intelligent entry point for the MCP server
*
* @param input.intent - What the user wants to do (explore, add_content, update_schema, convert, deploy)
* @param input.projectId - Specific project to get details for
*/
export declare function getStarted(input: GetStartedInput): Promise<string>;
//# sourceMappingURL=get-started.d.ts.map