import React from 'react'; import { BoxProps, NativeAttributes } from '../Box'; export declare type TableCellProps = Pick & NativeAttributes<'td'> & { /** Whether the content should wrap to multiple lines. Defaults to `auto` */ wrapText?: 'wrap' | 'nowrap' | 'auto'; /** The alignment of the cell. Defaults to `left` */ align?: BoxProps['textAlign']; /** Whether the content of the cell should be rendered using a fixed-width font */ mono?: boolean; }; declare const _default: React.MemoExoticComponent & React.RefAttributes>>; export default _default;