import Component from '../../components/tab-group/tab-group.js'; import { type EventName } from '@lit/react'; import type { WaTabHideEvent, WaTabShowEvent } from '../../events/events.js'; export type { WaTabHideEvent, WaTabShowEvent } from '../../events/events.js'; /** * @summary Tab groups organize related content into a single container that displays one panel at a time, with tabs for * switching between them. * @documentation https://webawesome.com/docs/components/tab-group * @status stable * @since 2.0 * * @dependency wa-button * @dependency wa-tab * @dependency wa-tab-panel * * @slot - Used for grouping tab panels in the tab group. Must be `` elements. * @slot nav - Used for grouping tabs in the tab group. Must be `` elements. Note that `` will set this * slot on itself automatically. * * @event {{ name: String }} wa-tab-show - Emitted when a tab is shown. * @event {{ name: String }} wa-tab-hide - Emitted when a tab is hidden. * * @csspart base - The component's base wrapper. * @csspart nav - The tab group's navigation container where tabs are slotted in. * @csspart tabs - The container that wraps the tabs. * @csspart body - The tab group's body where tab panels are slotted in. * @csspart scroll-button - The previous/next scroll buttons that show when tabs are scrollable, a ``. * @csspart scroll-button-start - The starting scroll button. * @csspart scroll-button-end - The ending scroll button. * @csspart scroll-button__base - The scroll button's exported `base` part. * * @cssproperty --indicator-color - The color of the active tab indicator. * @cssproperty --track-color - The color of the indicator's track (the line that separates tabs from panels). * @cssproperty --track-width - The width of the indicator's track (the line that separates tabs from panels). */ declare const reactWrapper: import("@lit/react").ReactWebComponent; onWaTabHide: EventName; }>; export default reactWrapper;