import React from 'react'; import { type OptionType, type SelectProps } from './types'; declare const CheckboxSelectInternal: ({ components, ...props }: SelectProps) => React.JSX.Element; declare const CheckboxSelect: typeof CheckboxSelectInternal; export default CheckboxSelect;