import { NativeElement } from '@nonoun/native-core'; /** * Individual tab within a tabs component. * @attr {string} value - Tab value used for selection matching * @attr {boolean} disabled - Disables this tab * @fires native:select - Fired on press with `{ value, label }` detail */ export declare class NTab extends NativeElement { #private; static observedAttributes: string[]; constructor(); get value(): string; set value(val: string); get disabled(): boolean; set disabled(val: boolean); get label(): string; attributeChangedCallback(name: string, old: string | null, val: string | null): void; setup(): void; teardown(): void; } //# sourceMappingURL=tab-element.d.ts.map