import { NativeElement } from '@nonoun/native-core'; /** * Individual segment within a segmented control. * @attr {string} value - Segment value emitted on selection * @attr {boolean} disabled - Disables this segment * @fires native:select - Fired on press with `{ value, label }` detail */ export declare class NSegment 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=segment-element.d.ts.map