export interface SEOEditorPreviewProps { seoTitle: string; seoDescription: string; seoKeywords: string; ogImageUrl: string; title: string; summary: string; featuredImage: string; onSeoTitleChange: (value: string) => void; onSeoDescriptionChange: (value: string) => void; onSeoKeywordsChange: (value: string) => void; onOgImageUrlChange: (value: string) => void; onOgImageUpload?: (file: File) => Promise; aiConfidenceSeoTitle?: number; aiConfidenceSeoDescription?: number; aiConfidenceSeoKeywords?: number; domain?: string; disabled?: boolean; className?: string; } /** * Unified SEO Editor with Live Preview * Complete self-contained component for managing SEO meta tags and OG preview * Used across blog posts, case studies, and product releases */ export declare function SEOEditorPreview({ seoTitle, seoDescription, seoKeywords, ogImageUrl, title, summary, featuredImage, onSeoTitleChange, onSeoDescriptionChange, onSeoKeywordsChange, onOgImageUrlChange, onOgImageUpload, aiConfidenceSeoTitle, aiConfidenceSeoDescription, aiConfidenceSeoKeywords, domain, disabled, className }: SEOEditorPreviewProps): import("react").JSX.Element; //# sourceMappingURL=seo-editor-preview.d.ts.map