import React$1 from 'react'; interface TabType { button: React.ReactNode; content: React.ReactNode; disabled?: boolean; open?: boolean; } interface TabProps extends React.AllHTMLAttributes { tabs: TabType[]; className?: string; buttonsClassName?: string; contentClassName?: string; variant?: 'default' | 'tab'; } declare const Tab: React$1.ForwardRefExoticComponent>; export { type TabProps, Tab as default };