import React, { ReactElement } from "react"; import VibeComponentProps from "../../../types/VibeComponentProps"; import { TabPanelsAnimationDirection } from "./TabPanelsConstants"; import { TabPanelProps } from "../TabPanel/TabPanel"; export interface TabPanelsProps extends VibeComponentProps { renderOnlyActiveTab?: boolean; activeTabId?: number; animationDirection?: TabPanelsAnimationDirection; children?: ReactElement | ReactElement[]; } declare const _default: ((import("../../../types/VibeComponent").default & Partial<{ animationDirections: typeof TabPanelsAnimationDirection; }>) | (React.FC & Partial<{ animationDirections: typeof TabPanelsAnimationDirection; }>)) & { animationDirections: typeof TabPanelsAnimationDirection; }; export default _default;