export type PDFPageProxy = import("../src/display/api").PDFPageProxy; export type StructTreeLayerBuilderOptions = { pdfPage: PDFPageProxy; rawDims: Object; }; /** * @typedef {Object} StructTreeLayerBuilderOptions * @property {PDFPageProxy} pdfPage * @property {Object} rawDims */ export class StructTreeLayerBuilder { /** * @param {StructTreeLayerBuilderOptions} options */ constructor(pdfPage: any, rawDims: any); /** * @returns {Promise} */ render(): Promise; getAriaAttributes(annotationId: any): Promise; hide(): void; show(): void; updateTextLayer(): void; #private; }