import { DataTestId } from '../../../../core/types/data-props.js'; import { StylingProps } from '../../../../core/types/styling-props.js'; import { WithChildren } from '../../../../core/types/with-children.js'; /** * Props for the `DataTableSelectionChip` component. * @public */ export type DataTableSelectionChipProps = WithChildren & StylingProps & DataTestId; /** * A component that displays the number of selected rows in a chip. * It can be used in the `DataTable.SelectedRowsActions` component to show how many rows are currently selected. * @public */ export declare const DataTableSelectionChip: (props: WithChildren & StylingProps & DataTestId & import("react").RefAttributes) => import("react").ReactElement | null;