UNPKG

rsuite

Version:

A suite of react components

17 lines (11 loc) 477 B
import * as React from 'react'; import { FormControlPickerProps } from '../@types/common'; import { SelectProps } from '../SelectPicker/SelectPicker.d'; export interface CheckPickerProps extends FormControlPickerProps<any[]>, SelectProps<any[]> { /** Top the selected option in the options */ sticky?: boolean; /** A picker that can be counted */ countable?: boolean; } declare const CheckPicker: React.ComponentType<CheckPickerProps>; export default CheckPicker;