import type { ExtendedRecordMap } from "notion-types";
/**
 * Check if a given Notion page data is a collection/database (ie. "parent") type,
 * which contains a list of entry pages.
 *
 * @param {ExtendedRecordMap} data
 * @returns {boolean} true if page type is "collection_view_page"
 */
export declare const checkIfParentPage: (data: ExtendedRecordMap) => boolean;
