import { type BlockAncestors, type BlockDecorator } from '../model/BlockDecorator'; import { type BlocksRegistry } from '../model/BlocksRegistry'; import { type ContentPageDef, type Slot } from '../model/ContentPageDef'; export interface BlockRendererOptions { key?: string; page?: ContentPageDef; blockDecorator?: BlockDecorator; blocksRegistry?: BlocksRegistry; parent?: Slot; ancestors?: BlockAncestors; }