import * as React from 'react';
import { Content } from '../../types/content/Content';
import { SlateRendererProps } from '../slateRenderer/SlateRenderer';
import { CellPlugin } from '@react-page/editor';
export interface ContentRendererProps {
    value: Content;
    lang: string;
    defaultLang: string;
    slateProps?: SlateRendererProps;
    reactPagePlugins?: CellPlugin[];
    showInvalid?: boolean;
}
declare const ContentRenderer: React.FC<ContentRendererProps>;
export default ContentRenderer;
