import * as React from "react";
//#region src/RadioGroup.d.ts
interface RadioGroupProps {
  value?: string;
  defaultValue?: string;
  onValueChange?(v: string): void;
  name?: string;
  disabled?: boolean;
  'aria-label'?: string;
  'aria-labelledby'?: string;
  children: React.ReactNode;
  className?: string;
}
declare function RadioGroup({ className, children, ...props }: RadioGroupProps): React.JSX.Element;
interface RadioProps {
  value: string;
  id?: string;
  disabled?: boolean;
  'aria-label'?: string;
  className?: string;
}
declare const Radio: React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<HTMLButtonElement>>;
//#endregion
export { Radio, RadioGroup, RadioGroupProps, RadioProps };