import React from 'react'; type Option = { label: string; id: string; countBadge?: string; }; type Variant = 'fixed' | 'scrollable'; type Props = { defaultSelectedId: string; options: Option[]; hasBorder?: boolean; variant?: Variant; onClick?: (event: React.MouseEvent | React.KeyboardEvent, id: string) => void; }; export declare const UnderlineTab: React.FC; export {}; //# sourceMappingURL=UnderlineTab.d.ts.map