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