/**
 * Task management function prompts for SoloFlow MCP
 * Advanced task management and breakdown functions
 */
export declare function taskAddTaskPrompt(args: {
    taskTitle?: string;
    priority?: string;
    category?: string;
    estimatedTime?: string;
}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function taskBreakdownRequirementsPrompt(args: {}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function taskBreakdownArchitecturePrompt(args: {}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function taskCreateEpicPrompt(args: {}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function taskCreateStoryPrompt(args: {}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function taskEstimateTasksPrompt(args: {}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
//# sourceMappingURL=task-prompts.d.ts.map