/// declare type Option = { value: string; label: string; }; export interface IRadioProps { onChange: (value: string) => void; options: Option[]; radioID: string; dataCy?: string; } export declare const Radio: (props: IRadioProps) => JSX.Element; export {}; //# sourceMappingURL=Radio.d.ts.map