/// <reference types="react" />
interface NotionContentRendererProps {
    recordMap: any;
    id: string;
    imageSource: (url: string) => string;
}
declare const NotionContentRenderer: (props: NotionContentRendererProps) => JSX.Element;
export default NotionContentRenderer;
