UNPKG

@atlaskit/editor-plugin-breakout

Version:

Breakout plugin for @atlaskit/editor-core

14 lines (13 loc) 624 B
import React from 'react'; import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types'; import type { EditorView } from '@atlaskit/editor-prosemirror/view'; import type { BreakoutPlugin } from '../breakoutPluginType'; type GuidelineLabelProps = { api: ExtractInjectionAPI<BreakoutPlugin> | undefined; boundariesElement?: HTMLElement; editorView: EditorView; mountPoint?: HTMLElement; scrollableElement?: HTMLElement; }; export declare const GuidelineLabel: ({ api, editorView, mountPoint, boundariesElement, scrollableElement, }: GuidelineLabelProps) => React.JSX.Element | null; export {};