import { type ReactElement } from 'react'; import { type DataTestId, type StylingProps, type WithChildren } from '@dynatrace/strato-components/core'; /** * @public */ export type DataTableV2TableActionsProps = WithChildren & StylingProps & DataTestId; /** * A helper function to check whether the child component is the TableActions component * @internal */ export declare function _isTableActions(child: ReactElement | null): child is ReactElement; /** * TableActions slot component for general actions that affect the entire table. Positoned above the header. * @public */ export declare const DataTableV2TableActions: (props: WithChildren & StylingProps & DataTestId & import("react").RefAttributes) => React.ReactElement | null;