import { SplitterBar } 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 { SplitterBar } from './../index'; export declare class SplitterBarComponent extends BaseElement implements OnInit, AfterViewInit, OnDestroy, OnChanges { constructor(ref: ElementRef); private eventHandlers; nativeElement: SplitterBar; /** @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 Conceals the splitter bar element from view, preventing users from seeing or interacting with it within the user interface. */ hide(): void; /** @description Reveals a previously hidden splitter bar, allowing users to resize or adjust the layout between adjacent panels or sections within the user interface. */ show(): void; /** @description Prevents the splitter bar from being moved or adjusted by the user, ensuring it remains fixed in its current position. */ lock(): void; /** @description Enables user interaction with the splitter bar, allowing users to drag and resize adjacent panels or sections within the interface. */ unlock(): void; get isRendered(): boolean; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; ngOnChanges(changes: SimpleChanges): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }