import { TabLayoutItem } from './../index';
import { TabLayoutItemOrientation } from './../index';
import { AfterViewInit, ElementRef, OnInit, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
import { BaseElement } from './smart.element';
import * as i0 from "@angular/core";
export { TabLayoutItemOrientation, ElementRenderMode } from './../index';
export { Smart } from './smart.element';
export { TabLayoutItem } from './../index';
export declare class TabLayoutItemComponent extends BaseElement implements OnInit, AfterViewInit, OnDestroy, OnChanges {
    constructor(ref: ElementRef<TabLayoutItem>);
    private eventHandlers;
    nativeElement: TabLayoutItem;
    /** @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 group orientation. */
    get orientation(): TabLayoutItemOrientation | string;
    set orientation(value: TabLayoutItemOrientation | 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<TabLayoutItemComponent, never>;
    static ɵdir: i0.ɵɵDirectiveDeclaration<TabLayoutItemComponent, "smart-tab-layout-item, [smart-tab-layout-item]", ["smart-tab-layout-item"], { "disabled": "disabled"; "modifiers": "modifiers"; "min": "min"; "label": "label"; "orientation": "orientation"; "size": "size"; "unfocusable": "unfocusable"; }, {}, never>;
}
