import { ContentContainerComponentHarness, HarnessPredicate } from '@angular/cdk/testing'; import { PblNgridColumnHeaderRowHarness, PblNgridDataRowHarness } from '../row/ngrid-column-row-harness'; import { PblNgridHarnessFilters } from '../ngrid-harness-filters'; export declare class PblNgridHarness extends ContentContainerComponentHarness { static hostSelector: string; static register

(key: P, method: PblNgridHarness[P]): void; /** * Gets a `HarnessPredicate` that can be used to search for a nGrid with specific attributes. * @param options Options for narrowing the search * @return a `HarnessPredicate` configured with the given options. */ static with(options?: PblNgridHarnessFilters): HarnessPredicate; getColumnHeaderRow(): Promise; getDataRow(rowIdentity: string): Promise; getDataRow(rowIndex: number): Promise; getDataRows(): Promise; }