import type { ReactElement, ReactNode } from 'react'; import type { YooEditor } from '../../editor/types'; import type { YooptaMark } from '../../marks'; import type { RenderBlockProps } from '../../yoopta-editor'; type Props = { editor: YooEditor; marks?: YooptaMark[]; placeholder?: string; renderBlock?: (props: RenderBlockProps) => ReactNode; }; declare const RenderBlocks: ({ editor, marks, placeholder, renderBlock }: Props) => ReactElement; export { RenderBlocks }; //# sourceMappingURL=render-blocks.d.ts.map