import * as React from "react"; interface RadioGroupOption { label: string; value?: string; } export interface RadioGroupProps { defaultOption?: number; label?: string; disabled?: boolean; name: string; options: RadioGroupOption[]; onChange: (value: string) => void; } declare const RadioGroup: React.FC; export default RadioGroup; //# sourceMappingURL=radio-group.d.ts.map