import { LitElement, type PropertyValues } from 'lit'; import { type NuiType } from '../../types/nui-type.js'; import { type NuiDockViewState } from './logic.js'; import type { DockItem, DockPosition, NuiDockEventMap } from './types.js'; export type { NuiDockEventMap }; /** * @slot - Default slot content */ export declare class NuiDock extends LitElement implements NuiDockViewState { model: DockItem[]; position: DockPosition; unstyled: boolean; dockClass: string; dockStyle: string; nuiType: NuiType; protected createRenderRoot(): DocumentFragment | HTMLElement; protected updated(changed: PropertyValues): void; private handleItemClick; render(): import("lit-html").TemplateResult; } export interface NuiDock { addEventListener( type: K, listener: (this: NuiDock, ev: NuiDockEventMap[K]) => void, options?: boolean | AddEventListenerOptions, ): void; addEventListener( type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions, ): void; removeEventListener( type: K, listener: (this: NuiDock, ev: NuiDockEventMap[K]) => void, options?: boolean | AddEventListenerOptions, ): void; removeEventListener( type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions, ): void; } declare global { interface HTMLElementTagNameMap { 'nui-dock': NuiDock; } } //# sourceMappingURL=nui-dock.d.ts.map