/**
 * Role-based function prompts for SoloFlow MCP
 * Specialized functions for different development roles
 */
export declare function roleAnalystModePrompt(args: {}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function roleArchitectModePrompt(args: {}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function roleDeveloperModePrompt(args: {}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function roleTesterModePrompt(args: {}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function roleProjectManagerModePrompt(args: {}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
//# sourceMappingURL=role-prompts.d.ts.map