import { ReactNode } from 'react';
export type TabButtonProps = {
    active: boolean;
    onClick: () => void;
    label: ReactNode;
    icon?: string;
    count?: number;
    countColor?: string;
    className?: string;
};
export declare function TabButton({ active, onClick, label, icon, count, countColor, className, }: TabButtonProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=TabButton.d.ts.map