import { TabsProps as ChakraTabsProps, TabListProps, TabPanelsProps, TabProps, TabPanelProps } from '@chakra-ui/react'; import { FC } from 'react'; export declare const tabsVariants: readonly ["line", "rounded"]; export type TabsVariant = typeof tabsVariants[number]; export interface TabsProps extends ChakraTabsProps { variant?: TabsVariant; } export interface TabsStaticMembers { Item: FC; List: FC; Panels: FC; Panel: FC; }