UNPKG

352 BTypeScriptView Raw
1import { FC } from 'react';
2import { ControlProps, OptionsMultiSelection, NormalizedOptionsConfig } from '../types';
3declare type CheckboxConfig = NormalizedOptionsConfig & {
4 isInline: boolean;
5};
6declare type CheckboxProps = ControlProps<OptionsMultiSelection> & CheckboxConfig;
7export declare const CheckboxControl: FC<CheckboxProps>;
8export {};