import { FocusEventHandler } from 'react'; import { type Descendant } from 'slate'; import { type DME } from '../../types'; export interface MiniRichTextProps { placeHolder?: string; mode?: DME.WidgetRenderProps['mode']; value?: Array | null; useEffectToUpdate?: boolean; onFocus?: FocusEventHandler; onValueChange?: (value: Descendant[]) => void; } declare const MiniRichText: (props: MiniRichTextProps) => import("react/jsx-runtime").JSX.Element; export { MiniRichText };