/** * @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, CdkTreeNode } from './tree'; /** * Node toggle to expand/collapse the node. */ export declare class CdkTreeNodeToggle { protected _tree: CdkTree; protected _treeNode: CdkTreeNode; /** Whether expand/collapse the node recursively. */ recursive: boolean; protected _recursive: boolean; constructor(_tree: CdkTree, _treeNode: CdkTreeNode); _toggle(event: Event): void; }