UNPKG

@lobehub/editor

Version:

A powerful and extensible rich text editor built on Meta's Lexical framework, providing a modern editing experience with React integration.

9 lines (8 loc) 296 B
import { type CSSProperties, type ReactNode } from 'react'; export interface PlaceholderProps { children: ReactNode; lineEmptyPlaceholder?: string; style?: CSSProperties; } declare const Placeholder: import("react").NamedExoticComponent<PlaceholderProps>; export default Placeholder;