UNPKG

chatui2

Version:

The React library for Chatbot UI

11 lines (10 loc) 405 B
import React from 'react'; export type RadioValue = string | number | undefined; export type RadioProps = React.InputHTMLAttributes<HTMLInputElement> & { value?: RadioValue; label?: RadioValue; }; export declare const Radio: React.ForwardRefExoticComponent<React.InputHTMLAttributes<HTMLInputElement> & { value?: RadioValue; label?: RadioValue; } & React.RefAttributes<HTMLLabelElement>>;