/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import type { JSX } from 'react';
import { type OptionProps, type OptionType } from '../types';
/**
 * __Checkbox option__
 */
export declare const CheckboxOption: <OptionT extends OptionType>(props: OptionProps<OptionT, true>) => JSX.Element;
