import type { ComponentProps, FC, PropsWithChildren, ReactNode } from "react"; import type { TabNotificationColors } from "."; export interface TabItemProps extends PropsWithChildren, "title">> { title: ReactNode; active?: boolean; disabled?: boolean; icon?: ReactNode; notification?: number | string; notificationColor?: keyof TabNotificationColors; } export declare const TabItem: FC;