import { FunctionComponent } from 'react';

interface TabProps {
    active?: boolean;
    animated?: boolean;
    title: string;
    label?: string;
    stat?: number;
    sentimentScore?: number;
    onClick?: () => void;
}
declare const Tab: FunctionComponent<TabProps>;

export { Tab as default };
export type { TabProps };
