import React, { HTMLAttributes } from 'react'; export interface CTabProps extends HTMLAttributes { /** * A string of all className you want applied to the base component. */ className?: string; /** * Toggle the disabled state for the component. */ disabled?: boolean; /** * Item key. */ itemKey: number | string; } export declare const CTab: React.ForwardRefExoticComponent>;