/** @packageDocumentation * @module StatusBar */ import * as React from "react"; import type { IModelConnection } from "@itwin/core-frontend"; import type { CommonProps } from "@itwin/core-react"; import "./SelectionCount.scss"; /** Properties for the [[SelectionCountField]] component. * @beta */ export interface SelectionCountFieldProps extends CommonProps { count: number; } /** Status field component used to display the number of selected items. * @note Use [[useSelectionSetSize]] hook to get the selection count. * @beta */ export declare function SelectionCountField(props: SelectionCountFieldProps): React.JSX.Element; /** Arguments for [[useSelectionSetSize]] hook. * @beta */ export interface UseSelectionSetSizeArgs { iModel: IModelConnection | undefined; } /** React hook that returns element count of a selection set. * @beta */ export declare function useSelectionSetSize(args: UseSelectionSetSizeArgs): number; //# sourceMappingURL=SelectionCount.d.ts.map