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 {};
