import { SvgNode } from './svgnode.js'; import type { Context } from '../context/context.js'; import type { Rect } from '../utils/geometry.js'; import type { Matrix } from '../jspdf.js'; export declare abstract class NonRenderedNode extends SvgNode { render(parentContext: Context): Promise; protected getBoundingBoxCore(context: Context): Rect; protected computeNodeTransformCore(context: Context): Matrix; abstract apply(context: Context): Promise; } //# sourceMappingURL=nonrenderednode.d.ts.map