@udus/notion-renderer
Version:

16 lines • 726 B
TypeScript
import type { BlockBlockObject } from "../../types/notion/block/block.js";
import type { LinkProps } from "../../types/notion/common/link.js";
import type { AnnotationItemMapper } from "../../types/notion/mapper/annotationItem.js";
import type { BlockMapper } from "../../types/notion/mapper/block.js";
import type { RichTextItemMapper } from "../../types/notion/mapper/richTextItem.js";
import type { FC } from "react";
type Props = {
block: BlockBlockObject;
blockMapper?: BlockMapper;
richTextItemMapper?: RichTextItemMapper;
annotationMapper?: AnnotationItemMapper;
LinkComponent?: React.ComponentType<LinkProps>;
};
export declare const Block: FC<Props>;
export {};
//# sourceMappingURL=Block.d.ts.map