import type { StatefulTabsState } from './types';
export { default as Tabs } from './tabs';
export { default as StatefulTabs } from './stateful-tabs';
export { default as Tab } from './tab';
export { ORIENTATION, STATE_CHANGE_TYPE } from './constants';
export { Root as StyledRoot, Tab as StyledTab, TabBar as StyledTabBar, TabContent as StyledTabContent, } from './styled-components';
export * from './types';
/** @deprecated use StatefulTabsState instead. To be removed in future versions.*/
export type State = StatefulTabsState;
