export interface OGEditorPreviewProps { seoTitle: string; seoDescription: string; seoKeywords: string; ogImageUrl: string; title: string; summary: string; featuredImage: string; categories?: Array<{ name: string; slug: string; }>; onSeoTitleChange: (value: string) => void; onSeoDescriptionChange: (value: string) => void; onSeoKeywordsChange: (value: string) => void; onOgImageUrlChange: (value: string) => void; OGImageUploadComponent: React.ReactNode; OGPreviewComponent: React.ReactNode; disabled?: boolean; className?: string; } /** * Unified SEO & Open Graph Editor with Preview * Used across blog posts, case studies, and product releases * Combines SEO fields, OG image upload, and preview in one component */ export declare function OGEditorPreview({ seoTitle, seoDescription, seoKeywords, onSeoTitleChange, onSeoDescriptionChange, onSeoKeywordsChange, OGImageUploadComponent, OGPreviewComponent, disabled, className }: OGEditorPreviewProps): import("react").JSX.Element; //# sourceMappingURL=og-editor-preview.d.ts.map