/** * @description ku4-tab-panel */ export declare class Ku4TabPanel { private host; /** * Set true to display panel */ selected: boolean; private maxHeight; private tab; handleTransitionEnd(): void; /** * Set this panel as selected. */ select(): Promise; /** * Unset this panel as selected. */ deselect(): Promise; /** * Connect this panel to a tab. * @param {Ku4Tab} tab - Tab to connect to this panel */ connect(tab: any): Promise; private get hasTransition(); render(): any; }