import { CSSResultArray, PropertyValues, TemplateResult } from 'lit'; import { LuzmoElement } from '../../utils/base'; /** * @element luzmo-tab-panel * * @slot - content of the Tab Panel */ export declare class LuzmoTabPanel extends LuzmoElement { static get styles(): CSSResultArray; selected: boolean; value: string; protected handleFocusin(): void; protected handleFocusout(): void; protected render(): TemplateResult; protected firstUpdated(): void; protected updated(changes: PropertyValues): void; }