import { LitElement } from 'lit'; import type { ActiveNode, ColumnConfiguration } from '../internal/types.js'; import ApexGridCell from './cell.js'; /** * Component representing the DOM row in the Apex grid. */ export default class ApexGridRow extends LitElement { static get tagName(): "apex-grid-row"; static styles: import("lit").CSSResult; static register(): void; protected _cells: NodeListOf>; data: T; columns: Array>; get cells(): ApexGridCell[]; activeNode: ActiveNode; index: number; connectedCallback(): void; protected render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { [ApexGridRow.tagName]: ApexGridRow; } }