import { LitElement } from 'lit'; /** * The panel which contains content that can be revealed using a tab * in the tab group component. * * @status ready * @category navigation * @slot - The tab panel content. */ export default class TabPanel extends LitElement { static styles: import("lit").CSSResult[]; render(): import("lit").TemplateResult<1>; connectedCallback(): void; } declare global { interface HTMLElementTagNameMap { 'nord-tab-panel': TabPanel; } }