import type { ComponentPropsWithoutRef, FC, ReactNode, Ref } from 'react'; import { type TestableProps } from '../../utils/testId'; import { Text } from '../Text'; type TextOwnProps = Pick, 'size' | 'color' | 'weight'>; export interface BulkBarSummaryCountProps extends Omit, 'children' | 'color'>, TextOwnProps, TestableProps { /** Renders the default "{count} selected" label. */ count?: number; /** Override the entire content (e.g. "5 hosts" instead of "5 selected"). */ children?: ReactNode; ref?: Ref; } export declare const BulkBarSummaryCount: FC; export {};