import React, { CSSProperties } from 'react'; interface Props { initialValue?: string; value?: string; hideDivider?: boolean; hideBorder?: boolean; highlight?: boolean; onChange?: (val: string) => void; className?: string; leftSpace?: CSSProperties['marginLeft']; hoverHeightRatio?: number; hoverWidthRatio?: number; align?: CSSProperties['justifyContent']; activeClassName?: string; activeStyle?: CSSProperties; } type NativeAttrs = Omit, keyof Props>; export type TabsProps = Props & NativeAttrs; declare const Tabs: React.ForwardRefExoticComponent>; export default Tabs;