blob: ffac1b907ee8be28e905e58e02089d49fd15c4ad [file] [log] [blame]
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { CdkTree } from '@angular/cdk/tree';
import { MatTreeNodeOutlet } from './outlet';
/**
* Wrapper for the CdkTable with Material design styles.
*/
export declare class MatTree<T, K = T> extends CdkTree<T, K> {
_nodeOutlet: MatTreeNodeOutlet;
}