import React, { type ReactElement } from "react"; import { type TabPanelsAnimationDirection } from "./TabPanels.types"; import { type TabPanelProps } from "../TabPanel/TabPanel"; import { type VibeComponentProps } from "../../../types"; export interface TabPanelsProps extends VibeComponentProps { /** * The index of the currently active tab panel. */ activeTabId?: number; /** * The animation direction when switching between tab panels. */ animationDirection?: TabPanelsAnimationDirection; /** * The child elements representing tab panels. */ children?: ReactElement | ReactElement[]; } declare const TabPanels: React.ForwardRefExoticComponent>; export default TabPanels;