UNPKG

@yandex/ui

Version:

Yandex UI components

18 lines (17 loc) 565 B
import { RefObject, TransitionEventHandler, FC } from 'react'; import './RadioButton-Plate.css'; export interface IRadioButtonPlateProps { /** * Дополнительный класс. */ className?: string; /** * Ссылка на DOM-элемент компонента. */ innerRef?: RefObject<HTMLDivElement>; /** * Обработчик завершения перехода. */ onTransitionEnd?: TransitionEventHandler<HTMLDivElement>; } export declare const RadioButtonPlate: FC<IRadioButtonPlateProps>;