import { ForwardedRef } from 'react';
export type TdProperties = {
    /** @ignore */
    className?: string;
};
/**
 * Table data cell component typically used for displaying data and content.
 * @docs {@link https://design.visa.com/react/components/table | See Docs}
 */
declare const _default: <HTMLElementType = HTMLTableCellElement>(props: {
    children?: import("react").ReactNode | import("react").ReactNode[];
    ref?: ForwardedRef<HTMLElementType> | undefined;
} & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & TdProperties) => import("react").ReactElement;
export default _default;
