///
import "./RadioGroup.scss";
export type RadioGroupChoice = {
value: T;
label: React.ReactNode;
ariaLabel?: string;
};
export type RadioGroupProps = {
choices: RadioGroupChoice[];
value: T;
onChange: (value: T) => void;
name: string;
};
export declare const RadioGroup: ({ onChange, value, choices, name, }: RadioGroupProps) => import("react/jsx-runtime").JSX.Element;