import React from 'react';
import { TdProps } from '../types';
type CombinedTdProps = TdProps & React.TdHTMLAttributes<HTMLTableCellElement>;
declare function Td(props: CombinedTdProps): React.JSX.Element;
export default Td;
