import React from 'react'; import { BoxProps, NativeAttributes } from '../Box'; export declare type TableHeaderCellProps = NativeAttributes<'th'> & { /** The alignment of the cell. Defaults to `left` */ align?: BoxProps['textAlign']; /** Marks the related column as sorted */ sortDir?: 'ascending' | 'descending' | false; }; declare const _default: React.MemoExoticComponent & React.RefAttributes>>; export default _default;