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 {};
