export type RadioData = { id: string; label: string; }; export interface RadioGroupProps { options: RadioData[]; selectedId: string; onChange: (item: RadioData) => void; isDisabled?: boolean; } declare const RadioGroup: ({ selectedId, options, onChange, isDisabled, }: RadioGroupProps) => import("react/jsx-runtime").JSX.Element; export default RadioGroup;