import { Context } from '../context/context.js'; import { GraphicsNode } from './graphicsnode.js'; import { Matrix } from '../jspdf.js'; /** * Draws the element referenced by a use node, makes use of pdf's XObjects/FormObjects so nodes are only written once * to the pdf document. This highly reduces the file size and computation time. */ export declare class Use extends GraphicsNode { protected renderCore(context: Context): Promise; private static renderReferencedNode; protected getBoundingBoxCore(context: Context): number[]; isVisible(parentVisible: boolean, context: Context): boolean; protected computeNodeTransformCore(context: Context): Matrix; } //# sourceMappingURL=use.d.ts.map