import { type EventEmitter } from "../../stencil-public-runtime"; export declare class TreeView { el: HTMLIfxTreeViewElement; /** Optional label displayed for the tree view. */ readonly label?: string; /** If true, disables all items in the tree view. */ readonly disableAllItems: boolean; /** If true, expands all items in the tree view. */ readonly expandAllItems: boolean; /** Accessible label for the tree view container. */ readonly ariaLabelText: string | null; /** Fired when the “expand all items” state changes. */ ifxTreeViewExpandAllChange: EventEmitter; /** Fired when the “disable all items” state changes. */ ifxTreeViewDisableAllChange: EventEmitter; handleExpandAllItemsChange(newValue: boolean): void; handleDisableAllItemsChange(newValue: boolean): void; private handleSlotRef; componentDidLoad(): Promise; render(): any; }