import { IBlock } from "./Blocks/Block.interface"; import { IPage } from "./Page.interface"; export declare class Page implements IPage { readonly raw: any; readonly object = "page"; readonly createdTime: Date; readonly lastEditedTime: Date; readonly createdBy: string; readonly lastEditedBy: string; readonly cover: any; readonly icon: any; readonly parent: any; readonly archived: boolean; readonly properties: any; readonly url: string; readonly children: IBlock[]; constructor(pageJson: any); toHTML(): string; } //# sourceMappingURL=Page.d.ts.map