import { InputHTMLAttributes } from 'react'; import { default as styles } from './Radio.module.css'; export { styles as RadioClasses }; export interface RadioProps extends InputHTMLAttributes { } /** * Renders a custom radio button, visually hiding the actual input while displaying custom icons for unchecked and checked states. * It supports all standard properties and events of an HTML input element of type "radio". */ export declare const Radio: import('react').ForwardRefExoticComponent>;