import { TableCellProps } from '@servicetitan/design-system'; import { GRID_COL_INDEX_ATTRIBUTE } from '@progress/kendo-react-grid'; import { ComponentProps } from 'react'; declare const useTdProps: ({ id, colSpan, ariaColumnIndex, isSelected, columnIndex, }: TableCellProps) => ComponentProps<"td"> & { [GRID_COL_INDEX_ATTRIBUTE]?: number; }; export { useTdProps }; //# sourceMappingURL=use-td-props.d.ts.map