import { ActionIconSize } from '@lobehub/ui';
import { LexicalEditor } from 'lexical';
import { BLOCK_TYPE } from '../utils';
type Props = {
    size?: ActionIconSize;
    editor: LexicalEditor;
    blockType: BLOCK_TYPE;
    value: string;
    onChange: (v: string) => void;
};
export default function DropdownLanguages({ size, editor, blockType, value, onChange }: Props): import("react/jsx-runtime").JSX.Element;
export {};
