import React from 'react'; import { PropsWithHTMLAttributesAndRef } from '../../../utils/types/PropsWithHTMLAttributes'; import { PropSize } from '../types'; export type SelectItemAllProps = PropsWithHTMLAttributesAndRef<{ checked: boolean; intermediate?: boolean; size: PropSize; hovered?: boolean; indent?: 'normal' | 'increased'; countItems?: number; total?: number; }, HTMLDivElement>; export declare const cnSelectItemAll: import("@bem-react/classname").ClassNameFormatter; export declare const SelectItemAll: React.FC;