/**
 * Core Tool Handlers Module
 * Implements the core MCP tool handlers for Dev Flow
 */
export declare function getNextTask(): Promise<{
    content: {
        type: string;
        text: string;
    }[];
}>;
export declare function startTask(taskId: string, stage?: string): Promise<{
    content: {
        type: string;
        text: string;
    }[];
}>;
export declare function checkProgress(runTests?: boolean): Promise<{
    content: {
        type: string;
        text: string;
    }[];
}>;
export declare function saveCheckpoint(message: string, files?: string[]): Promise<{
    content: {
        type: string;
        text: string;
    }[];
}>;
export declare function recordMistake(pattern: string, context?: string, solution?: string): Promise<{
    content: {
        type: string;
        text: string;
    }[];
}>;
export declare function completeTask(summary?: string): Promise<{
    content: {
        type: string;
        text: string;
    }[];
}>;
//# sourceMappingURL=core-tool-handlers.d.ts.map