import { IBlock } from "./Blocks/Block.interface"; export interface IPage { readonly raw: any; readonly object: string; 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; children: IBlock[]; toHTML(): string; } //# sourceMappingURL=Page.interface.d.ts.map