import React from "react"; // editor import { EditorReadOnlyRefApi, ILiteTextReadOnlyEditor, LiteTextReadOnlyEditorWithRef } from "@plane/lite-text-editor"; // helpers import { cn } from "@/helpers/common.helper"; // hooks import { useMention } from "@/hooks/use-mention"; interface LiteTextReadOnlyEditorWrapperProps extends Omit {} export const LiteTextReadOnlyEditor = React.forwardRef( ({ ...props }, ref) => { const { mentionHighlights } = useMention(); return ( ); } ); LiteTextReadOnlyEditor.displayName = "LiteTextReadOnlyEditor";