import * as React from "react";
import { PCRCheckboxRadioProps } from "../../typings/PCRCheckboxRadioProps";
import { UseRadioState, useRadioState } from "./useRadioState";
export type RadioProps = Omit<
  PCRCheckboxRadioProps<$PropertyType<UseRadioState, "state">>,
  "indeterminate"
>;
declare export var Radio: React.ForwardRefExoticComponent<{
  ...RadioProps,
  ...React.RefAttributes<HTMLInputElement>,
}>;
declare export { UseRadioState, useRadioState };
