/// <reference types="react" />
import { LexicalEditor } from 'lexical';
import { BLOCK_TYPE } from './utils';
interface BlockFormatDropDownProps {
    blockType: BLOCK_TYPE;
    editor: LexicalEditor;
    disabled?: boolean;
}
export declare const BlockFormatDropDown: React.FC<BlockFormatDropDownProps>;
export {};
