import { Accessibility, TableCellBehaviorProps } from '@fluentui/accessibility'; import { ChildrenComponentProps, ContentComponentProps, UIComponentProps } from '../../utils'; import { ComponentWithAs } from '@fluentui/react-bindings'; import { BoxProps } from '../Box/Box'; import { ShorthandValue, FluentComponentStaticProps } from '../../types'; export interface TableCellProps extends UIComponentProps, ChildrenComponentProps, ContentComponentProps> { /** * Accessibility behavior if overridden by the user. * @available TableCellBehavior * */ accessibility?: Accessibility; /** * Truncate cell's content */ truncateContent?: boolean; } export declare type TableCellStylesProps = Pick; export interface TableCellSlotClassNames { content: string; } export declare const tableCellClassName = "ui-table__cell"; export declare const tableCellSlotClassNames: TableCellSlotClassNames; /** * Component represents a table cell. */ export declare const TableCell: ComponentWithAs<'div', TableCellProps> & FluentComponentStaticProps;