import { ChangeDetectorRef, EventEmitter, OnInit, QueryList } from "@angular/core"; import { SpsTableCellComponent } from "../table-cell/sps-table-cell.component"; export declare class SpsTableRowComponent implements OnInit { private _changeDetector; static readonly displayName = "sps-table-row / sps-tr"; static readonly props: { selectable: string; }; private static _idNum; _checkboxId: string; readonly _roleAttr = "row"; readonly _spsTableRowClass = true; id: string; selectable: boolean; selected: boolean; selectedChange: EventEmitter; selectionCell: SpsTableCellComponent; contentCells: QueryList; shiftClick: EventEmitter; constructor(_changeDetector: ChangeDetectorRef); ngOnInit(): void; getCells(): SpsTableCellComponent[]; select(selectionState: boolean): void; _makeSelectable(): void; _onCheckboxChange(): void; _onCheckboxMousedown(event: MouseEvent): void; _onCheckboxClick(event: MouseEvent): void; }