UNPKG

notion-renderer

Version:
10 lines (9 loc) 252 B
/// <reference types="react" /> interface ImageBlockProps { id: string; properties: any; format: any; imageSource: (url: string) => string; } declare const ImageBlock: (props: ImageBlockProps) => JSX.Element; export default ImageBlock;