UNPKG

@dndbuilder.com/react

Version:

Drag and drop builder for React

10 lines (9 loc) 273 B
import { FC } from 'react'; export interface TextEditorProps { value?: string; onChange?: (content: string) => void; placeholder?: string; className?: string; } export declare const TextEditor: FC<TextEditorProps>; //# sourceMappingURL=text-editor.d.ts.map