/// export declare type RadioItem = { disabled?: boolean; label: string; value: string; }; export declare enum RadioLabelPlacement { start = "start", end = "end" } export interface RadioGroupProps { className?: string; defaultValue?: string; disabled?: boolean; labelPlacement?: keyof typeof RadioLabelPlacement; onChange?: (value: string) => void; options: RadioItem[]; orientation?: React.AriaAttributes['aria-orientation']; value?: string; testId?: string; }