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