import { MatTableDataSource } from '@angular/material'; /** * A MatTableDataSource which has generic sorting and filtering behaviour. It assumes the column names to match the data * properties, with support for dot notation. */ export declare class GenericTableDataSource extends MatTableDataSource { constructor(filterColumns: Iterable, initialData?: T[]); }