UNPKG

439 BTypeScriptView Raw
1import { DetailedHTMLProps, ForwardRefExoticComponent, HTMLAttributes, PropsWithoutRef, RefAttributes } from 'react';
2export interface TabBarInnerProps extends DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
3 tabKey: string;
4 onTabClick?: (key: string) => void;
5}
6declare const TabBarInner: ForwardRefExoticComponent<PropsWithoutRef<TabBarInnerProps> & RefAttributes<HTMLDivElement>>;
7export default TabBarInner;