import { NotionPermissions } from '@nishans/permissions'; import { IPage, ISpace, TBlock } from '@nishans/types'; import { INotionCoreOptions } from '../../'; import Block from './Block'; /** * A class to represent Page type block of Notion * @noInheritDoc */ export default class PageBlock extends Block { Permissions: InstanceType; constructor(arg: INotionCoreOptions); getCachedParentData(): Promise; /** * Add/remove this page from the favorite list */ toggleBookmarked(): Promise; toggleFollow(): Promise; }