import * as React from 'react'; export interface RadioContext { /** Current radio value */ currentValue: string | number | undefined; /** Change current radio value */ setValue: ( e: React.MouseEvent, newValue: string | number ) => void; } declare const useRadioContext: () => RadioContext | undefined, RadioContextProvider: React.Provider, RadioContextConsumer: React.Consumer; export { useRadioContext, RadioContextProvider, RadioContextConsumer };