UNPKG

chatui2

Version:

The React library for Chatbot UI

13 lines (12 loc) 489 B
import React from 'react'; import { CheckboxProps, CheckboxValue } from './Checkbox'; export type CheckboxGroupProps = { className?: string; options: CheckboxProps[]; value: CheckboxValue[]; name?: string; disabled?: boolean; block?: boolean; onChange: (value: CheckboxValue[], event: React.ChangeEvent<HTMLInputElement>) => void; }; export declare const CheckboxGroup: React.ForwardRefExoticComponent<CheckboxGroupProps & React.RefAttributes<HTMLDivElement>>;