import './index.css'; import { type JSX } from 'react'; import * as React from 'react'; export type RadioGroupProps = React.PropsWithChildren<{ className?: string; value?: Value; /** * aria-label of RadioGroup */ label?: string; name: string; onChange(next: Value): void; disabled?: boolean; readonly?: boolean; invalid?: boolean; ref?: React.Ref; 'aria-labelledby'?: React.ComponentProps<'div'>['aria-labelledby']; 'aria-orientation'?: React.ComponentProps<'div'>['aria-orientation']; }>; export declare const RadioGroup: (props: RadioGroupProps) => JSX.Element; //# sourceMappingURL=index.d.ts.map