import React from 'react'; import type { TableFormatColumn } from '@sheinx/hooks'; import { TbodyProps } from './tbody.type'; interface TdProps extends Pick { col: TableFormatColumn; data: any[]; colSpan: number; rowSpan: number; className: string; style?: React.CSSProperties; direction: 'ltr' | 'rtl'; role?: string; onMouseEnter?: () => void; onMouseLeave?: () => void; onClick?: () => void; renderContent: (col: TableFormatColumn, data: any[]) => React.ReactNode; scrolling?: boolean; } export default function Td(props: TdProps): JSX.Element; export {}; //# sourceMappingURL=td.d.ts.map