import type { ComponentType, FC } from 'react'; import type { WithIntlProps, WrappedComponentProps } from 'react-intl'; import type { BreakoutMode, ExtractInjectionAPI } from '@atlaskit/editor-common/types'; import type { EditorView } from '@atlaskit/editor-prosemirror/view'; import type { BreakoutPlugin } from '../breakoutPluginType'; export interface Props { api: ExtractInjectionAPI | undefined; boundariesElement?: HTMLElement; breakoutMode: BreakoutMode | undefined; editorView: EditorView | undefined; handleClick?: Function; isBreakoutNodePresent: boolean; isLivePage?: boolean; mountPoint?: HTMLElement; scrollableElement?: HTMLElement; } declare const _default_1: FC> & { WrappedComponent: ComponentType; }; export default _default_1;