/// import { BlockObjectResponse, PartialBlockObjectResponse } from "@notionhq/client/build/src/api-endpoints"; import { mediaMapInterface } from "../../types/types"; /** * Renders your notion page content. It does not include the page title or other page properties. * * @param mediaMap is an object that notion-on-next generates for you. Find it in public/notion-media/media-map.json. */ export declare const NotionPageBody: (arg: { blocks: (PartialBlockObjectResponse | BlockObjectResponse)[]; databaseId: string; pageId: string; mediaMap?: mediaMapInterface | undefined; }) => JSX.Element;