import React from 'react'; import { ComponentColor } from '../types'; export type RadioTabProps = Omit, 'type' | 'color'> & { color?: ComponentColor; bgColor?: string; borderColor?: string; active?: boolean; disabled?: boolean; label: string; name: string; contentClassName?: string; }; declare const RadioTab: React.ForwardRefExoticComponent, "type" | "color"> & { color?: "neutral" | "primary" | "secondary" | "accent" | "ghost" | "info" | "success" | "warning" | "error" | undefined; bgColor?: string | undefined; borderColor?: string | undefined; active?: boolean | undefined; disabled?: boolean | undefined; label: string; name: string; contentClassName?: string | undefined; } & React.RefAttributes>; export default RadioTab;