import * as React from 'react'; import type { RadioChangeHandler } from '../Radio'; export declare type UseRadioValueReturn = [ V | undefined, RadioChangeHandler, React.Dispatch> ]; /** * Use this hook to get automatically the input value * and the handler function to attach to input. * Additionally function to force change will be returned * * @param initialValue */ export declare function useRadioValue( initialValue?: V ): UseRadioValueReturn;