import React from 'react'; import { IComponentBaseProps, ComponentSize } from '../types'; export type TabsProps = React.HTMLAttributes & IComponentBaseProps & { variant?: 'bordered' | 'lifted' | 'boxed'; size?: ComponentSize; }; declare const _default: React.ForwardRefExoticComponent & IComponentBaseProps & { variant?: "bordered" | "lifted" | "boxed" | undefined; size?: "lg" | "md" | "sm" | "xs" | undefined; } & React.RefAttributes> & { Tab: React.ForwardRefExoticComponent, "color"> & { color?: "neutral" | "primary" | "secondary" | "accent" | "ghost" | "info" | "success" | "warning" | "error" | undefined; bgColor?: string | undefined; borderColor?: string | undefined; active?: boolean | undefined; disabled?: boolean | undefined; } & React.RefAttributes>; RadioTab: React.ForwardRefExoticComponent, "color" | "type"> & { 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 _default;