@yuntijs/ui
Version:
☁️ Yunti UI - an open-source UI component library for building Cloud Native web apps
11 lines (10 loc) • 317 B
TypeScript
/// <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 {};