import { EventEmitter } from '../../stencil-public-runtime';
import { Tab } from '../tab-bar/tab.types';
/**
 * Interface for components rendered inside a `limel-tab-panel`
 * @public
 */
export interface TabPanelComponent {
    /**
     * The tab that the component belongs to
     */
    tab: Tab;
    /**
     * Emit when the tab is updated for some reason, e.g. changing the text,
     * icon or badge
     */
    changeTab?: EventEmitter<Tab>;
}
//# sourceMappingURL=tab-panel.types.d.ts.map