/**
 * Development function prompts for SoloFlow MCP
 * Code implementation and development functions
 */
export declare function developmentWriteCodePrompt(args: {
    feature?: string;
    language?: string;
    framework?: string;
}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function developmentFixBugPrompt(args: {
    bugDescription?: string;
    severity?: string;
    component?: string;
}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function developmentRefactorCodePrompt(args: {
    component?: string;
    reason?: string;
}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function developmentCodeReviewChecklistPrompt(args: {
    codeLanguage?: string;
}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
//# sourceMappingURL=development-prompts.d.ts.map