/**
 * @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<HelpDialogPlugin> | undefined;
    quickInsertEnabled?: boolean;
}
declare const _default_1: FC<WithIntlProps<HelpDialogProps & WrappedComponentProps>> & {
    WrappedComponent: ComponentType<HelpDialogProps & WrappedComponentProps>;
};
export default _default_1;
