import { PropsWithChildren } from 'react'; import './BasicBlock.less'; import { DefaultElement } from "../../common/type"; interface BasicBlockProps { deep: number; isShowPlaceholder: boolean; blockType: DefaultElement['type']; readonly: boolean; } export default function BasicBlock(props: PropsWithChildren): JSX.Element; export {};