import { TemplateRef, Type } from '@angular/core';
import { IDynamicInstantiatable } from "../common";
export declare class JigsawTabPane {
    title: string;
    disabled: boolean;
    hidden: boolean;
    /**
     * @deprecated use `lazy` instead
     *
     * @internal
     */
    async: boolean;
    /**
     * 为true时，Tab页的视图延将被迟到该Tab页被打开的时候才被初始化。
     *
     * @type {boolean}
     */
    lazy: boolean;
    initData: Object;
    label: TemplateRef<any> | Type<IDynamicInstantiatable>;
    content: TemplateRef<any> | Type<IDynamicInstantiatable>;
}
