import React from 'react'; import { IRadioButtonsContext, RadioGroupContextProps } from './'; declare const RadioGroupProvider: ({ children, onChange, value, }: RadioGroupContextProps) => React.JSX.Element; declare const useRadioGroup: () => Partial; export { RadioGroupProvider, useRadioGroup };