/// import type { IOption, IOptionProps } from "../../Combobox/Combobox.types"; export interface IOptionContentProps { option: IOption; isSelected: boolean; } export default function CheckboxOption({ data: option, isFocused, isSelected, innerProps, innerRef, selectProps, ...rest }: IOptionProps): JSX.Element;