/// /// export declare class PlotStyleUtils { static safeWidth(e: JQuery): number | null | undefined; static safeHeight(e: JQuery): number | null | undefined; static outerWidth(e: JQuery, includeMargin?: boolean): number | null; static outerHeight(e: JQuery, includeMargin?: boolean): number | null; static convertToXHTML(html: string): string; static getElementStyles(element: Element): string; static getActualCss(jqElement: JQuery, jqFunction: keyof JQuery, jqFunctionParams?: unknown): unknown; private static getComputedStyle; }