import { NativeElement } from '@nonoun/native-core'; /** * Table row that supports selection when the parent table is selectable. * @attr {string} value - Row identifier used for selection tracking * @attr {boolean} selected - Whether this row is selected */ export declare class NTableRow extends NativeElement { #private; static observedAttributes: string[]; constructor(); get value(): string; set value(val: string); get selected(): boolean; set selected(val: boolean); setup(): void; teardown(): void; } //# sourceMappingURL=table-row-element.d.ts.map