import type { Plugin, PluginDOMEvents } from './types'; import type { SlateElement } from '../editor/types'; import type { YooptaMark } from '../marks'; type Props, TOptions> = Plugin & { id: string; marks?: YooptaMark[]; placeholder?: string; events?: PluginDOMEvents; }; declare const SlateEditorComponent: >, TOptions>({ id, elements, marks, events, extensions: withExtensions, placeholder, }: Props) => import("react/jsx-runtime").JSX.Element; export { SlateEditorComponent }; //# sourceMappingURL=slate-editor-component.d.ts.map