import React from 'react'; interface Props { initialValue?: string; value?: string; hideDivider?: boolean; onChange?: (val: string) => void; className?: string; } declare type NativeAttrs = Omit, keyof Props>; export declare type TabsProps = Props & NativeAttrs; declare const Tabs: React.ForwardRefExoticComponent>; export default Tabs;