import { FC, ReactNode, AnchorHTMLAttributes } from 'react'; type TabProps = Omit, 'title'> & { isCurrent?: boolean; title: string | ReactNode; tabKey: string; disabled?: boolean; onChange?: (ref: HTMLElement) => void; url?: string; }; declare const Tab: FC; export default Tab;