import React from "react"; import "./SconeRadio.scss"; interface RadioProps { children: React.ReactChild; name: string; value: string; checked?: boolean; className?: string; size?: "small"; title?: string; handleChange: (event: React.SyntheticEvent) => void; } declare const SconeRadio: (props: RadioProps) => JSX.Element; export default SconeRadio;