import { EventEmitter } from '../../stencil-public-runtime'; export declare class RTab { host: HTMLRTabElement; /** Indicates if `` is disabled */ disabled: boolean; /** Indicates if `` is active */ active: boolean; /** Id of the panel that `` controls */ panelId: string; /** Emits `click` event on the `` */ tabChange: EventEmitter<{ element: HTMLRTabElement; }>; /** Emits `keydown` event on the `` to notify tabs component to move focus */ moveTabFocus: EventEmitter<{ element: HTMLRTabElement; keycode: string; }>; private handleClick; private handleKeyup; private handleKeydown; render(): any; }