import { ComponentProps, FC } from 'react'; export declare type RadioProps = ComponentProps<'input'> & { active?: boolean; checked?: boolean; }; export declare const Radio: FC;