import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
import { PluginKey } from '@atlaskit/editor-prosemirror/state';
import type { BlockMenuPlugin, FLAG_ID } from '../blockMenuPluginType';
export declare const blockMenuPluginKey: PluginKey;
type BlockMenuPluginState = {
    showFlag: FLAG_ID | false;
};
export declare const createPlugin: (api: ExtractInjectionAPI<BlockMenuPlugin> | undefined) => SafePlugin<BlockMenuPluginState>;
export {};
