import type { ComponentProps } from 'react'; import { DeepPartial } from '..'; export interface FlowbiteRadioTheme { base: string; } export interface RadioProps extends Omit, 'type' | 'ref'> { theme?: DeepPartial; } export declare const Radio: import("react").ForwardRefExoticComponent>;