export declare function InlineRichEditor({ value, onChange, hint, toolbar, onEnter, }: { /** The stored inline fragment (or a plain string on a form never formatted). */ value: string; onChange: (next: string) => void; /** Shown in place of empty copy, so an unnamed element can still be aimed at. */ hint?: string; /** Sidebar: show the formatting toolbar and the field border around it. */ toolbar?: boolean; /** Canvas: Enter ends the edit rather than doing nothing. */ onEnter?: () => void; }): import("react").JSX.Element | null;