import { HTMLWidget } from "@hpcc-js/common"; import "../src/AbsoluteSurface.css"; export declare class AbsoluteSurface extends HTMLWidget { constructor(); enter(domNode: any, element: any): void; update(domNode: any, element: any): void; exit(domNode: any, element: any): void; } export interface AbsoluteSurface { units(): string; units(_: string): this; widgetX(): number; widgetX(_: number): this; widgetY(): number; widgetY(_: number): this; widgetWidth(): string; widgetWidth(_: string): this; widgetHeight(): string; widgetHeight(_: string): this; widget(): any; widget(_: any): this; opacity(): number; opacity(_: number): this; }