import { TemplateRef } from '@angular/core';
export declare type TabPanelPositionState = 'center-with-animation' | 'center-without-animation' | 'top-with-animation' | 'top-with-animation-with-higher-zindex' | 'top-without-animation' | 'left-with-animation' | 'left-with-animation-with-higher-zindex' | 'left-without-animation' | 'bottom-with-animation' | 'bottom-with-animation-with-higher-zindex' | 'bottom-without-animation' | 'right-with-animation' | 'right-with-animation-with-higher-zindex' | 'right-without-animation';
export declare class TabPane {
    prefixCls: string;
    tintColor: string;
    unselectedTintColor: string;
    active: boolean;
    isTitleString: boolean;
    showTabPanelContent: boolean;
    position: TabPanelPositionState;
    private _title;
    title: string | TemplateRef<void>;
    paneWrap: boolean;
    readonly wrapActive: boolean;
    readonly wrapInactive: boolean;
    constructor();
    onTranslateTabStarted(e: any): void;
    onTranslateTabComplete(e: any): void;
}
