import { LitElement, type PropertyValues } from 'lit'; import { type NuiType } from '../../types/nui-type.js'; import { type NuiScrollPanelViewState } from './logic.js'; /** * @slot - Default slot content */ export declare class NuiScrollPanel extends LitElement implements NuiScrollPanelViewState { unstyled: boolean; scrollPanelClass: string; nuiType: NuiType; connectedCallback(): void; protected createRenderRoot(): DocumentFragment | HTMLElement; protected updated(changed: PropertyValues): void; render(): import("lit-html").TemplateResult; } declare global { interface HTMLElementTagNameMap { 'nui-scroll-panel': NuiScrollPanel; } } //# sourceMappingURL=nui-scroll-panel.d.ts.map