import { GdsElement } from '../../../gds-element'; import type { GdsTab } from '../tab/tab.component'; /** * @element gds-tab-panel * @status beta * * @summary A tab panel component for use inside ``. * * @slot - Panel content */ export declare class GdsTabPanel extends GdsElement { #private; static styles: import("lit").CSSResult[]; /** * A unique name used to associate this panel with a `.` * Must be unique within the parent ``. */ name: string; /** * The resolved associated `` element, if any. Managed by the parent ``. */ get tabEl(): GdsTab | undefined; connectedCallback(): void; /** * @internal */ _setTabEl(tabEl?: GdsTab): void; /** * @internal */ _setSelected(selected: boolean): void; render(): any; }