import { LexicalEditor } from "lexical"; declare const blockTypeToBlockName: { h1: string; h2: string; h3: string; h4: string; h5: string; paragraph: string; }; declare const FontSize: ({ selectionFontSize, disabled, editor, blockType, styleConfig, isenterPressed, currentElementClick, currentElementSelect, wpAndTaskId }: { selectionFontSize: string; disabled: boolean; editor: LexicalEditor; blockType: keyof typeof blockTypeToBlockName; styleConfig: any; isenterPressed: any; currentElementClick: any; currentElementSelect: any; wpAndTaskId: any; }) => import("react/jsx-runtime").JSX.Element; export default FontSize;