/** * @jsxRuntime classic * @jsx jsx */ import { type ComponentType, type FC } from 'react'; import type { WithIntlProps, WrappedComponentProps } from 'react-intl'; import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types'; import type { EditorView } from '@atlaskit/editor-prosemirror/view'; import type { HelpDialogPlugin } from '../helpDialogPluginType'; export interface HelpDialogProps { editorView: EditorView; pluginInjectionApi: ExtractInjectionAPI | undefined; quickInsertEnabled?: boolean; } declare const _default_1: FC> & { WrappedComponent: ComponentType; }; export default _default_1;