import Component from '../../components/tabs/tabs.component.js'; import { type EventName } from '@lit/react'; import type { TerraTabShowEvent } from '../../events/events.js'; import type { TerraTabHideEvent } from '../../events/events.js'; export type { TerraTabShowEvent } from '../../events/events.js'; export type { TerraTabHideEvent } from '../../events/events.js'; /** * @summary Tabs organize content into a container that shows one section at a time. * @documentation https://terra-ui.netlify.app/components/tabs * @status stable * @since 1.0 * * @dependency terra-icon * * @slot - Used for grouping tab panels in the tabs component. Must be `` elements. * @slot nav - Used for grouping tabs in the tabs component. Must be `` elements. * * @event {{ name: String }} terra-tab-show - Emitted when a tab is shown. * @event {{ name: String }} terra-tab-hide - Emitted when a tab is hidden. * * @csspart base - The component's base wrapper. * @csspart nav - The tabs' navigation container where tabs are slotted in. * @csspart tabs - The container that wraps the tabs. * @csspart active-tab-indicator - The line that highlights the currently selected tab. * @csspart body - The tabs' body where tab panels are slotted in. * @csspart scroll-button - The previous/next scroll buttons that show when tabs are scrollable. * @csspart scroll-button--start - The starting scroll button. * @csspart scroll-button--end - The ending scroll button. * * @cssproperty --terra-tabs-indicator-color - The color of the active tab indicator. * @cssproperty --terra-tabs-track-color - The color of the indicator's track (the line that separates tabs from panels). * @cssproperty --terra-tabs-track-width - The width of the indicator's track (the line that separates tabs from panels). */ declare const reactWrapper: import("@lit/react").ReactWebComponent; onTerraTabHide: EventName; }>; export default reactWrapper;