@upv/react-ui-core
Version:
**USHI Design System — Modern UI Component Library**
16 lines (15 loc) • 374 B
TypeScript
import React from "react";
interface AIContentBuilderProps {
onGenerate?: () => void;
loading?: boolean;
progress?: number | null;
generatedData?: {
blocks: {
id: string;
type: string;
content: string;
}[];
} | null;
}
export declare const AIContentBuilder: React.FC<AIContentBuilderProps>;
export {};