import { type HTMLAttributes } from 'react';
import type { DataTestId, StylingProps, WithChildren } from '@dynatrace/strato-components/core';
/**
* Props for the DataTableV2.DefaultCell
* @public
*/
export type DataTableV2DefaultCellProps = WithChildren & StylingProps & DataTestId & HTMLAttributes;
/**
* DataTableV2 custom Cell renderer wrapper. This component automatically deals
* with applying the correct cell styles.
* @public
*/
export declare const DataTableV2DefaultCell: (props: WithChildren & StylingProps & DataTestId & HTMLAttributes & import("react").RefAttributes) => React.ReactElement | null;