import React from 'react'; import { ControlGroupProps } from '../types'; export declare function useRadioGroup(props: ControlGroupProps): { optionsProps: { name: string; value: string; content: React.ReactNode; checked: boolean; disabled: boolean | undefined; onChange: (event: React.ChangeEvent) => void; }[]; };