import * as React from "react"; import { DecorationType, BlockType, BlockMapType, MapPageUrl, MapImageUrl, CustomBlockComponents, CustomDecoratorComponents } from "./types"; export declare const createRenderChildText: (customDecoratorComponents?: CustomDecoratorComponents | undefined) => (properties: DecorationType[]) => JSX.Element[]; interface Block { block: BlockType; level: number; blockMap: BlockMapType; mapPageUrl: MapPageUrl; mapImageUrl: MapImageUrl; fullPage?: boolean; hideHeader?: boolean; customBlockComponents?: CustomBlockComponents; customDecoratorComponents?: CustomDecoratorComponents; } export declare const Block: React.FC; export {};