/**
 * Design function prompts for SoloFlow MCP
 * Comprehensive design functions including UI, system, architecture, data, and API design
 */
export declare function designCreateUIPrompt(args: {
    component?: string;
    page?: string;
    designType?: string;
}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function designSystemArchitecturePrompt(args: {
    systemType?: string;
    scale?: string;
}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function designAPIInterfacePrompt(args: {
    apiType?: string;
    version?: string;
}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function designDatabaseSchemaPrompt(args: {
    databaseType?: string;
    schemaType?: string;
}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function designReviewPrompt(args: {
    reviewType?: string;
    designType?: string;
}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
//# sourceMappingURL=design-prompts.d.ts.map