import { LayoutItem } 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 { LayoutItem } from './../index';
export declare class LayoutItemComponent extends BaseElement implements OnInit, AfterViewInit, OnDestroy, OnChanges {
    constructor(ref: ElementRef<LayoutItem>);
    private eventHandlers;
    nativeElement: LayoutItem;
    /** @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 Enables or disables the element. */
    get disabled(): boolean;
    set disabled(value: boolean);
    /** @description Sets or gets the modifiers of the Layout item. */
    get modifiers(): any;
    set modifiers(value: any);
    /** @description Determines the min size of the item. */
    get min(): number;
    set min(value: number);
    /** @description Determines the label of the item. */
    get label(): string;
    set label(value: string);
    /** @description Determines the size of the item. */
    get size(): any;
    set size(value: any);
    /** @description If is set to true, the element cannot be focused. */
    get unfocusable(): boolean;
    set unfocusable(value: boolean);
    get isRendered(): boolean;
    ngOnInit(): void;
    ngAfterViewInit(): void;
    ngOnDestroy(): void;
    ngOnChanges(changes: SimpleChanges): void;
    /** @description Add event listeners. */
    private listen;
    /** @description Remove event listeners. */
    private unlisten;
    static ɵfac: i0.ɵɵFactoryDeclaration<LayoutItemComponent, never>;
    static ɵdir: i0.ɵɵDirectiveDeclaration<LayoutItemComponent, "smart-layout-item, [smart-layout-item]", ["smart-layout-item"], { "disabled": "disabled"; "modifiers": "modifiers"; "min": "min"; "label": "label"; "size": "size"; "unfocusable": "unfocusable"; }, {}, never>;
}
