import type { ComponentPropsWithoutRef, FC, ReactNode, Ref } from 'react'; import { type TestableProps } from '../../utils/testId'; export interface BulkBarSummaryProps extends Omit, 'children'>, TestableProps { children: ReactNode; ref?: Ref; } export declare const BulkBarSummary: FC;