import { ReactElement } from 'react'; import { Property } from 'csstype'; import { TabProps } from './Tab'; declare type TabItem = ReactElement; declare type TabItems = TabItem[]; declare type Children = TabItems | TabItem; declare type TabsPropsType = Readonly<{ className?: string; headerClassName?: string; activeIndex: number; appearance?: 'button' | 'classic' | 'text'; justifyContent?: Property.JustifyContent; responsive?: boolean; onActiveIndexChanged?: (activeIndex: number) => void; children: Children; }>; export default function Tabs({ children, className, headerClassName, activeIndex, responsive, appearance, justifyContent, onActiveIndexChanged, }: TabsPropsType): JSX.Element; export {};