import { KSLCustomElement } from "./abstract/KSLCustomElement"; import type { IPositionable } from "./abstract/KSLPositionedElement"; import { KSLAddButtonElement } from "./KSLAddButtonElement"; import { KSLHighlightElement } from "./KSLHighlightElement"; export declare class KSLContainerElement extends KSLCustomElement implements IPositionable { static get is(): "ksl-container"; private _boundingClientRect; static initializeTemplate(): HTMLTemplateElement; getBoundingClientRect(shouldRecompute?: boolean): DOMRect; createHighlightForElement: (element: HTMLElement) => KSLHighlightElement; createAddButtonForElement: (element: HTMLElement) => KSLAddButtonElement; adjustPosition: () => void; }