import { FC, Key } from 'react'; import { IconType } from '../../Icon'; declare type Props = { selected: Key; className?: string; tabClassName?: string; tabs: GroupTab[]; onTabChanged: (key: Key) => void; }; declare type GroupTab = { icon: IconType; text?: string; disabled?: boolean; }; export declare const GroupTabs: FC; export {};