import { type ReactElement } from 'react'; import { DataTestId } from '../../../../core/types/data-props.js'; import { StylingProps } from '../../../../core/types/styling-props.js'; import { WithChildren } from '../../../../core/types/with-children.js'; /** * @public */ export type DataTableSelectionChipProps = WithChildren & StylingProps & DataTestId; /** * * @public */ export declare const DataTableSelectionChip: (props: WithChildren & StylingProps & DataTestId & import("react").RefAttributes) => import("react").ReactElement | null;