import { TreeItemsGroup } 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 { TreeItemsGroup } from './../index'; export declare class TreeItemsGroupComponent extends BaseElement implements OnInit, AfterViewInit, OnDestroy, OnChanges { constructor(ref: ElementRef); private eventHandlers; nativeElement: TreeItemsGroup; /** @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 active and can be interacted with by the user. When enabled, the element responds to user input; when disabled, it appears inactive and does not accept interactions. */ get disabled(): boolean; set disabled(value: boolean); /** @description */ get disableDrag(): boolean; set disableDrag(value: boolean); /** @description */ get expanded(): boolean; set expanded(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 value(): any; set value(value: any); /** @description Prevents users from interacting with the item by disabling all mouse, keyboard, and touch events, making the item unresponsive to user actions. */ 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; }