import React from 'react'; interface IOption { id: string; name: string; disabled?: boolean; } interface IRadioButtons { value: string | null; onValueChange: (value: string | null) => void; options: Array; } export declare const RadioButtons: (props: IRadioButtons) => React.JSX.Element; export {};