import type { ComponentPropsWithRef, ElementType } from 'react'; export type TdProperties = ComponentPropsWithRef; /** * Table data cell component typically used for displaying data and content. * @docs {@link https://design.visa.com/components/table/?code_library=react | See Docs} */ declare const Td: { ({ className, ...remainingProps }: TdProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Td;