import React from 'react'; import { LabelProps } from '../Label'; export interface TabsItemProps { id: string; title: string | React.ReactNode; meta?: string; hint?: string; active?: boolean; disabled?: boolean; icon?: React.ReactNode; counter?: number; label?: { content: React.ReactNode; theme?: LabelProps['theme']; }; onClick(tabId: string): void; } export declare const TabsItem: React.FC;