UNPKG

@dndbuilder.com/react

Version:

Drag and drop builder for React

16 lines (15 loc) 515 B
import { SettingsType } from '../../../../types'; import { FC, HTMLAttributes, LabelHTMLAttributes } from 'react'; type Props = { label?: string; type: SettingsType; fieldName: string; mode?: string; responsive?: boolean; isLocalized?: boolean; placeholder?: string; labelProps?: LabelHTMLAttributes<HTMLLabelElement>; } & HTMLAttributes<HTMLDivElement>; declare const TextEditorControl: FC<Props>; export default TextEditorControl; //# sourceMappingURL=text-editor.control.d.ts.map