import { OnInit } from '@angular/core'; import { MatSort, MatTable } from '@angular/material'; /** * Directives which automatically registers a MatSort to a MatTableDataSource. */ export declare class ApplyMatSortDirective implements OnInit { private readonly matTable; private readonly matSort; constructor(matTable: MatTable, matSort: MatSort); ngOnInit(): void; }