import { AtomMut } from '@reatom/framework'; import React from 'react'; import { FieldPropSize } from '../../FieldComponents'; import { PropsWithHTMLAttributesAndRef } from '../../../utils/types/PropsWithHTMLAttributes'; export type SelectItemAllProps = PropsWithHTMLAttributesAndRef<{ size: FieldPropSize; hovered?: boolean; indent?: 'normal' | 'increased'; groupsCounterAtom: AtomMut>; groupId: string | number; highlightedIndexAtom: AtomMut; index: number; label: string; }, HTMLDivElement>; export declare const cnSelectItemAll: import("@bem-react/classname").ClassNameFormatter; export declare const SelectItemAll: React.FC;