import './SelectItem.css'; import React from 'react'; import { CheckboxPropSize } from '../../Checkbox'; import { FieldPropSize } from '../../FieldComponents'; import { PropsWithHTMLAttributesAndRef } from '../../../utils/types/PropsWithHTMLAttributes'; export type SelectItemProps = PropsWithHTMLAttributesAndRef<{ label: string; active: boolean; hovered: boolean; multiple?: boolean; size: FieldPropSize; indent: 'normal' | 'increased'; disabled: boolean | undefined; }, HTMLDivElement>; export declare const sizeCheckboxMap: Record; export declare const cnSelectItem: import("@bem-react/classname").ClassNameFormatter; export declare const SelectItem: React.FC;