import { PropsWithHTMLAttributes } from '../../../utils/types/PropsWithHTMLAttributes';
import { PropSize } from '../types';
export type SelectItemAllProps = PropsWithHTMLAttributes<{
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: (props: SelectItemAllProps) => import("react/jsx-runtime").JSX.Element;