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