import { HTMLAttributes, InputHTMLAttributes, RefObject } from 'react';
import { BaseRadioProps } from './types';
export interface UseRadioResult {
inputProps: InputHTMLAttributes;
isPressed: boolean;
rootProps: HTMLAttributes;
}
export declare function useRadio(props: BaseRadioProps, inputRef: RefObject): UseRadioResult;