import { type ReactElement } from 'react'; import { type DataTestId, type StylingProps, type WithChildren } from '@dynatrace/strato-components/core'; /** * @public */ export type DataTableV2SelectionChipProps = WithChildren & StylingProps & DataTestId; /** * A helper function to check whether the child component is the SelectionChip component * @internal */ export declare function _isDataTableV2SelectionChip(child: ReactElement | null): child is ReactElement; /** * * @public */ export declare const DataTableV2SelectionChip: (props: WithChildren & StylingProps & DataTestId & import("react").RefAttributes) => React.ReactElement | null;