import { AABB } from '../math'; export declare class HTML { static getGeometryBounds(html: Partial): AABB; html: string; /** * The x attribute defines an x-axis coordinate in the user coordinate system. * @see https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/x */ x: number; /** * The y attribute defines an x-axis coordinate in the user coordinate system. * @see https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/y */ y: number; /** * The width attribute defines the horizontal length of an element in the user coordinate system. * Negative values are allowed. * @see https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/width * */ width: number; /** * The height attribute defines the vertical length of an element in the user coordinate system. * Negative values are allowed. * @see https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/height * */ height: number; constructor(props?: Partial); }