UNPKG

@chatui/core

Version:

The React library for Chatbot UI

8 lines (7 loc) 255 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.FC<RadioProps>;