interface TabItem {
    label: string;
    description?: string;
    selectedTab: string;
    count?: number;
    disabled?: boolean;
    permissions?: boolean;
    icon?: React.ReactNode;
}
interface CardTabsProps {
    tabs: TabItem[];
    selectedTab: string;
    onTabChange: (selectedTab: string) => void;
    className?: string;
    outlined?: boolean;
    id?: string;
}
declare const CardTabs: React.FC<CardTabsProps>;
export default CardTabs;
