/// <reference types="react" />
import { LexicalEditor } from 'lexical';
interface PROPS {
    editor: LexicalEditor;
    value: string;
    disabled?: boolean;
}
export declare const FontDropDown: React.FC<PROPS>;
export {};
