UNPKG

@atlaskit/editor-plugin-block-menu

Version:

BlockMenu plugin for @atlaskit/editor-core

12 lines (11 loc) 503 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; }; export declare const MoveDownDropdownItem: React.FC<WithIntlProps<Props & WrappedComponentProps>> & { WrappedComponent: React.ComponentType<Props & WrappedComponentProps>; }; export {};