import { Cre8Element } from '../cre8-element'; /** * @slot - The component content */ export declare class Cre8TabPanel extends Cre8Element { static styles: import("lit").CSSResult[]; /** * This will remove focus on panel element */ skipFocusOnPanel?: boolean; /** * Indicates if the panel is active *

_*This property is dynamically set_ */ isActive?: boolean; /** * Used to align the tab panel with the tab *

_*This property is dynamically set_ */ index?: number; /** * Query the tab panel element */ _Cre8TabPanel: HTMLElement; /** * First updated * 1. If skipFocusOnPanel is not true, then allow tabbing to the panel. */ firstUpdated(): void; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'cre8-tab-panel': Cre8TabPanel; } } export default Cre8TabPanel; //# sourceMappingURL=tab-panel.d.ts.map