UNPKG

@chatui/core

Version:

The React library for Chatbot UI

8 lines (7 loc) 273 B
import React from 'react'; export type CheckboxValue = string | number | undefined; export type CheckboxProps = React.InputHTMLAttributes<HTMLInputElement> & { value?: CheckboxValue; label?: CheckboxValue; }; export declare const Checkbox: React.FC<CheckboxProps>;