import { FC } from 'react'; import { IOption } from '../../interfaces'; interface RadioProps { themeColor?: string; name: string; checked?: boolean; onChange: (option: any) => void; option: IOption; } export declare const Radio: FC; export default Radio;