import * as React from 'react'; import { RadioGroupProps } from './types'; /** * Reset handler, resets component to initial value or default value * @param {RadioGroupProps} props - properties of the component * @param {RadioValue} defaultValue - value of the first child RadioButton * @param {React.Dispatch>} setValue - setState callback * * @returns {void} */ export declare const createResetHandler: (props: RadioGroupProps, defaultValue: string | number, setValue: React.Dispatch>) => () => void;