import { type HTMLAttributes, type ReactElement } from 'react';
import type { DataTestId } from '../../../core/types/data-props.js';
import type { StylingProps } from '../../../core/types/styling-props.js';
import type { WithChildren } from '../../../core/types/with-children.js';
/**
* Props for the DataTable.DefaultCell
* @public
*/
export type DataTableDefaultCellProps = WithChildren & StylingProps & DataTestId & HTMLAttributes;
/**
* DataTable custom Cell renderer wrapper. This component automatically deals
* with applying the correct cell styles.
* @public
*/
export declare const DataTableDefaultCell: (props: WithChildren & StylingProps & DataTestId & HTMLAttributes & import("react").RefAttributes) => import("react").ReactElement | null;