import React from 'react';
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
import type { BlockTypePlugin } from '../blockTypePluginType';
type ParagraphBlockMenuItemProps = {
    api: ExtractInjectionAPI<BlockTypePlugin> | undefined;
};
export declare const createParagraphBlockMenuItem: ({ api }: ParagraphBlockMenuItemProps) => () => React.JSX.Element;
export {};
