/**
 * Context Tool Handlers Module
 * Implements context management MCP tool handlers for Dev Flow
 */
export declare function createContextFrame(taskId: string, stage: string, summary?: string): Promise<{
    content: {
        type: string;
        text: string;
    }[];
}>;
export declare function addContextFact(fact: string, isGlobal?: boolean): Promise<{
    content: {
        type: string;
        text: string;
    }[];
}>;
export declare function getContext(): Promise<{
    content: {
        type: string;
        text: string;
    }[];
}>;
//# sourceMappingURL=context-tool-handlers.d.ts.map