import type { ButtonHTMLAttributes, FC, ReactNode, Ref } from 'react';
import { type TestableProps } from '../../utils/testId';
export interface BulkBarSummarySelectAllProps extends Omit, 'children' | 'color' | 'type'>, TestableProps {
children?: ReactNode;
ref?: Ref;
}
export declare const BulkBarSummarySelectAll: FC;