import { FC, MouseEventHandler } from 'react'; interface TabProps { /** The name of the tab. */ name: string; /** Whether the tab is selected. */ isSelected?: boolean; /** Called when the tab is clicked. */ onClick?: MouseEventHandler; /** Maximum width of the tab in pixels. */ maxWidth?: number; } export declare const Tab: FC; export {};