import { LitElement, type PropertyValues } from 'lit'; import { type NuiType } from '../../types/nui-type.js'; import type { TabListInterface, TabPanelInterface, TabsProps, NuiTabsEventMap } from './types.js'; export type { NuiTabsEventMap }; /** * @slot - Default slot content */ export declare class NuiTabs extends LitElement implements TabsProps { lists?: TabListInterface[]; panels?: TabPanelInterface[]; value?: string | number; unstyled: boolean; nuiType: NuiType; activeValue: string | number; protected createRenderRoot(): DocumentFragment | HTMLElement; protected firstUpdated(): void; protected updated(changed: PropertyValues): void; private initializeActiveValue; private handleTabClick; private get _handlers(); render(): import("lit-html").TemplateResult; } export interface NuiTabs { addEventListener( type: K, listener: (this: NuiTabs, ev: NuiTabsEventMap[K]) => void, options?: boolean | AddEventListenerOptions, ): void; addEventListener( type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions, ): void; removeEventListener( type: K, listener: (this: NuiTabs, ev: NuiTabsEventMap[K]) => void, options?: boolean | AddEventListenerOptions, ): void; removeEventListener( type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions, ): void; } declare global { interface HTMLElementTagNameMap { 'nui-tabs': NuiTabs; } } //# sourceMappingURL=nui-tabs.d.ts.map