import { ErrorBoundaryType } from '../shared/useDecorators';
export declare function RichTextPlugin({ contentEditable, placeholder, ErrorBoundary }: {
    contentEditable: JSX.Element;
    placeholder?: ((isEditable: boolean) => null | JSX.Element) | null | JSX.Element;
    ErrorBoundary?: ErrorBoundaryType;
}): JSX.Element;
