/** * The content panel associated with an `r-tab`, shown when its corresponding tab is active. * * Example * ``` * * * Overview * Details * * Overview content. * Details content. * * ``` * * @slot - Content displayed inside the tab panel when it is active */ export declare class RTabPanel { /** Defines if the `panel` is hidden */ active: boolean; /** Id of the 'tab' connected to this `panel` */ tabId?: string; render(): any; }