import SgdsElement from "../../base/sgds-element"; /** * @summary Tab panels are used inside tab groups to display tabbed content. * @slot - The tab panel's content. * */ export declare class SgdsTabPanel extends SgdsElement { static styles: import("lit").CSSResult[]; private readonly attrId; private readonly componentId; /** The tab panel's name. */ name: string; /** When true, the tab panel will be shown. When used with tab-group, this property is already being managed */ active: boolean; connectedCallback(): void; _handleActiveChange(): void; render(): import("lit").TemplateResult<1>; } export default SgdsTabPanel;