import { FC, ReactNode } from 'react'; import { FlexboxProps } from 'react-layout-kit'; import { type TabsNavProps } from "../TabsNav"; export interface TabsProps extends Omit { children: ReactNode[]; defaultIndex?: number | string; items: string[]; tabNavProps?: Partial; } declare const Tabs: FC; export default Tabs;