import * as React from 'react'; import type { ITableContext } from './TableContext'; export interface ITableCellProps { indent?: number; children?: React.ReactNode; } export interface ITableCellPropsWithInternalFields extends ITableCellProps { index: number; } export type ITableCellLayoutProps = ITableCellPropsWithInternalFields & Pick; export declare const TableCell: (props: ITableCellProps) => JSX.Element;