import { type FC, type ReactNode } from 'react'; export interface TableActionBarSelectionProps { /** * Optional override of the selection summary. Compose it from the exported * `BulkBarSummary*` primitives; the DS injects table state and actions * (`onClick`, `disabled`, `count`) into the recognized parts while preserving * every attribute you set (`data-analytics-id`, `data-analytics-props`, * `aria-*`, `ref`, any `data-*`). Omit `children` to render the DS default * block. * * Injection targets the **direct** `BulkBarSummary*` children (Fragments are * not unwrapped); wrapping a part in your own element opts it out of wiring. */ children?: ReactNode; } export declare const TableActionBarSelection: FC;