import * as Common from '../../core/common/common.js'; import type * as SDK from '../../core/sdk/sdk.js'; import * as UI from '../../ui/legacy/legacy.js'; import { ComputedStyleModel, type ComputedStyleChangedEvent } from './ComputedStyleModel.js'; export declare class ElementsSidebarPane extends UI.Widget.VBox { protected computedStyleModelInternal: ComputedStyleModel; private readonly updateThrottler; private updateWhenVisible; constructor(delegatesFocus?: boolean); node(): SDK.DOMModel.DOMNode | null; cssModel(): SDK.CSSModel.CSSModel | null; computedStyleModel(): ComputedStyleModel; doUpdate(): Promise; update(): void; wasShown(): void; onCSSModelChanged(_event: Common.EventTarget.EventTargetEvent): void; }