import { Block } from '@zettel/core'; import { RenderProps } from './types'; import { Value } from '@zettel/core'; declare type Props = RenderProps & { mapBlockValue?: (val: Value) => Value; blocks: Block[]; block?: Block; }; export default function EditorBlockChildren(props: Props): JSX.Element; export {};