import { LitElement } from 'lit'; /** * @element nve-grid-row * @description Represents a horizontal row of data cells within a grid, supporting selection and interactive states. * @since 0.11.0 * @entrypoint \@nvidia-elements/core/grid * @slot - default slot for `nve-grid-cell` * @cssprop --background * @cssprop --border-bottom * @aria https://www.w3.org/WAI/ARIA/apg/patterns/grid/ */ export declare class GridRow extends LitElement { /** * Setting the `selected` property or attribute to `true` shows the row in a selected state. */ selected: boolean; static styles: import('lit').CSSResult[]; static readonly metadata: { tag: string; version: string; children: string[]; }; /** @private */ _internals: ElementInternals; render(): import('lit').TemplateResult<1>; connectedCallback(): void; }