import { type FoundationElementDefinition, type StartEndOptions } from '@ni/fast-foundation'; import { AnchorBase } from '../anchor-base'; declare global { interface HTMLElementTagNameMap { 'nimble-anchor-tab': AnchorTab; } } export type TabOptions = FoundationElementDefinition & StartEndOptions; /** * A nimble-styled link tab */ export declare class AnchorTab extends AnchorBase { /** * When true, the control will be immutable by user interaction. See {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/disabled | disabled HTML attribute} for more information. * @public * @remarks * HTML Attribute: disabled */ disabled: boolean; /** * Indicates the current "selected" state of various widgets. * {@link https://www.w3.org/TR/wai-aria-1.1/#aria-selected} * * @public * @remarks * HTML Attribute: aria-selected */ ariaSelected: string; } export declare const anchorTabTag = "nimble-anchor-tab";