import { ContentProperties } from "./ContentProperties"; export declare class PageProperties { private readonly _pageNumber; private readonly _isScanned; private readonly _hasStructure; private readonly _height; private readonly _width; private readonly _content?; constructor(page: any); get pageNumber(): number; get isScanned(): boolean; get width(): number; get hasStructure(): boolean; get content(): ContentProperties | undefined; get height(): number; }