UNPKG

@atlaskit/editor-plugin-block-menu

Version:

BlockMenu plugin for @atlaskit/editor-core

12 lines (11 loc) 477 B
import React from 'react'; import type { WithIntlProps, WrappedComponentProps } from 'react-intl'; import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types'; import type { BlockMenuPlugin } from '../blockMenuPluginType'; type Props = { api: ExtractInjectionAPI<BlockMenuPlugin> | undefined; } & WrappedComponentProps; export declare const DeleteDropdownItem: React.FC<WithIntlProps<Props>> & { WrappedComponent: React.ComponentType<Props>; }; export {};