import { type FC, type ReactElement } from "react"; import type VibeComponentProps from "../../../types/VibeComponentProps"; export interface TabPanelProps extends VibeComponentProps { /** * The content inside the tab panel. */ children?: ReactElement | ReactElement[] | string; /** * The index of the tab panel. */ index?: number; } declare const TabPanel: FC; export default TabPanel;