import { type BlockDef } from '../model/ContentPageDef'; import { type UniBlockProps } from '../UniBlock/UniBlockProps'; import { type BlockRendererOptions } from './BlockRendererOptions'; export declare type ExtraProps = Partial> & UniBlockProps; export declare function renderBlock(block: BlockDef, options: BlockRendererOptions, { className, ...extraProps }?: ExtraProps): any;