import { LitElement } from 'lit'; /** * The interactive tab button for use within the tab group component. * * @status ready * @category navigation * @slot - The tab button content. * * @cssprop [--n-tab-color=var(--n-color-text-weak)] - Controls the text color of the tab, using our [color tokens](/tokens/#color). * @cssprop [--n-tab-font-weight=var(--n-font-weight)] - Controls the font weight of the tab, using our [font tokens](/tokens/#font). */ export default class Tab extends LitElement { static styles: import("lit").CSSResult[]; private defaultSlot; /** * Whether the tab item is selected */ selected: boolean; render(): import("lit").TemplateResult<1>; /** * Apply accessible attributes and values to the tab button. * Observe the selected property if it changes */ protected handleSelectionChange(): void; connectedCallback(): void; } declare global { interface HTMLElementTagNameMap { 'nord-tab': Tab; } }