import type { ComponentProps } from 'react';
import React from 'react';
import type { DeepPartial } from '../../types';
export interface FlowbiteRadioTheme {
    root: FlowbiteRadioRootTheme;
}
export interface FlowbiteRadioRootTheme {
    base: string;
}
export interface RadioProps extends Omit<ComponentProps<'input'>, 'ref' | 'type'> {
    theme?: DeepPartial<FlowbiteRadioTheme>;
}
export declare const Radio: React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<HTMLInputElement>>;
