import Tailwind from '../base/tailwind-base'; /** * @tag plus-tab-panel * @summary Tab panel component that displays content associated with a tab. * * @slot - The default slot for tab panel content * * @csspart panel - The component's base wrapper * * @example * ```html * Tab 1 Content * ``` */ export default class PlusTabPanel extends Tailwind { static styles: import("lit").CSSResult[]; /** * Sets the value of the tab panel, used for matching with a tab */ value: string; /** * Indicates whether the panel is currently active/visible. */ active: boolean; /** * An optional class to apply to the panel container. */ panelClass: string; render(): import("lit-html").TemplateResult<1>; } export { PlusTabPanel }; //# sourceMappingURL=tab-panel.d.ts.map