UNPKG

@yandex/ui

Version:

Yandex UI components

14 lines (13 loc) 427 B
import { Ref, ChangeEventHandler, FC } from 'react'; import './Radiobox-Control.css'; export declare type RadioboxControlProps = { checked?: boolean; controlRef?: Ref<HTMLInputElement>; disabled?: boolean; labelledBy?: string; name?: string; onChange?: ChangeEventHandler<HTMLInputElement>; value?: string; autoFocus?: boolean; }; export declare const RadioboxControl: FC<RadioboxControlProps>;