import type { ComponentProps } from "react"; import type { DynamicStringEnumKeysOf, FlowbiteColors, ThemingProps } from "../../types"; export interface RadioTheme { base: string; color: FlowbiteColors; } export interface RadioProps extends Omit, "ref" | "type">, ThemingProps { color?: DynamicStringEnumKeysOf; } export declare const Radio: import("react").ForwardRefExoticComponent>;