/**
 * Release management function prompts for SoloFlow MCP
 * Complete release and deployment lifecycle management
 */
export declare function releaseCommitChangesPrompt(args: {
    commitType?: string;
    scope?: string;
}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function releaseCreateReleasePrompt(args: {
    version?: string;
    releaseType?: string;
}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function releaseDeploymentChecklistPrompt(args: {
    environment?: string;
}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function releaseRollbackPlanPrompt(args: {
    version?: string;
    reason?: string;
}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function releaseMonitorDeploymentPrompt(args: {
    environment?: string;
    duration?: string;
}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
//# sourceMappingURL=release-prompts.d.ts.map