import React from 'react'; import TabsItem from './tabs-item'; interface Props { initialValue?: string; value?: string; hideDivider?: boolean; onChange?: (val: string) => void; className?: string; } declare const defaultProps: { className: string; hideDivider: boolean; }; declare type NativeAttrs = Omit, keyof Props>; export declare type TabsProps = Props & typeof defaultProps & NativeAttrs; declare type TabsComponent

= React.FC

& { Item: typeof TabsItem; Tab: typeof TabsItem; }; declare type ComponentProps = Partial & Omit & NativeAttrs; declare const _default: TabsComponent; export default _default;