import type { StartContextToolInput, StartContextToolResponse } from '../../schemas/start-context.js';
/**
 * Main tool logic for starting a context.
 * It reads the specified context file and constructs the initial prompt.
 */
export declare function executeStartContext(input: StartContextToolInput): Promise<StartContextToolResponse>;
/**
 * Validates the input arguments for the Start Context tool and executes the core logic.
 * This function serves as the main entry point for the MCP tool, ensuring
 * that the provided arguments are valid before proceeding.
 * It reads the specified context file and constructs the initial prompt.
 */
export declare function executeStartContextTool(args: unknown): Promise<StartContextToolResponse>;
