UNPKG

@chatui/core

Version:

The React library for Chatbot UI

8 lines (7 loc) 293 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: (props: CheckboxProps) => React.JSX.Element;