import { TreeItem } from './../index'; import { AfterViewInit, ElementRef, OnInit, OnChanges, OnDestroy, SimpleChanges } from '@angular/core'; import { BaseElement } from './smart.element'; import * as i0 from "@angular/core"; export { ElementRenderMode } from './../index'; export { Smart } from './smart.element'; export { TreeItem } from './../index'; export declare class TreeItemComponent extends BaseElement implements OnInit, AfterViewInit, OnDestroy, OnChanges { constructor(ref: ElementRef); private eventHandlers; nativeElement: TreeItem; /** @description Creates the component on demand. * @param properties An optional object of properties, which will be added to the template binded ones. */ createComponent(properties?: {}): any; /** @description Controls whether the element is enabled (interactive) or disabled (non-interactive). When disabled, the element cannot be interacted with by the user and may appear visually dimmed or inactive. */ get disabled(): boolean; set disabled(value: boolean); /** @description */ get disableDrag(): boolean; set disableDrag(value: boolean); /** @description */ get label(): any; set label(value: any); /** @description */ get level(): number; set level(value: number); /** @description */ get selected(): boolean; set selected(value: boolean); /** @description */ get separator(): boolean; set separator(value: boolean); /** @description */ get shortcut(): string; set shortcut(value: string); /** @description */ get value(): any; set value(value: any); /** @description Prevents users from interacting with the item, disabling all actions such as clicking, tapping, dragging, or keyboard input. The item will not respond to any user-generated events while this setting is enabled. */ get readonly(): boolean; set readonly(value: boolean); get isRendered(): boolean; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; ngOnChanges(changes: SimpleChanges): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }