import React, { FC } from 'react'; export interface TabPropsStrict { /** The 'active' tab in the group */ active?: boolean; /** Adds one or more classnames for an element */ className?: string; /** Adds the HTML disabled state */ disabled?: boolean; /** Making hyperlink out of tab */ href?: string; /** What happens when the user clicks the tab */ onClick?: (e: React.SyntheticEvent) => void; } export interface TabProps extends TabPropsStrict { /** Unstrict Props */ [propName: string]: any; } export declare const Tab: FC;