import { Block } from '@zettel/core'; import { RenderProps } from './types'; declare type Props = RenderProps & { block: Block; }; export default function EditorBlock(props: Props): JSX.Element; export {};