import { IVisualContainer } from "../../interfaces/verification-system-interfaces.js"; /** * Web implementation of IVisualContainer using HTMLElement */ export declare class WebVisualContainer implements IVisualContainer { private readonly element; /** * Create a new web visual container * @param element - The HTML element to use as a container */ constructor(element: HTMLElement); /** * Get the width of the container */ getWidth(): number; /** * Get the height of the container */ getHeight(): number; /** * Get the underlying HTML element */ getElement(): HTMLElement; getBoundingClientRect(): DOMRect; } //# sourceMappingURL=web-visual-container.d.ts.map