import type { ReactNode } from 'react'; export type RadioControlGroupValue = string | number; export interface RadioControlGroupOptionProps { children?: ReactNode; error?: boolean | string; help?: ReactNode; label: string; value: RadioControlGroupValue; } export declare const RadioControlGroupOption: (props: RadioControlGroupOptionProps) => ReactNode; //# sourceMappingURL=RadioControlGroupOption.d.ts.map