/** * @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 { CdkTreeNodeToggle } from '@angular/cdk/tree'; /** * Wrapper for the CdkTree's toggle with Material design styles. */ export declare class MatTreeNodeToggle extends CdkTreeNodeToggle { get recursive(): boolean; set recursive(value: boolean); }