import React from 'react'; import styles from './TableHeadCell.module.scss'; export interface TableHeadCellProps extends React.HTMLProps { /** Alignment for content in table head cell. This will override the align prop value that is set in the `Table.Cell`. */ align?: 'start' | 'center' | 'end'; /** Child of `Table.HeadCell` which should be any element. */ children: React.ReactNode; /** Disable sort for header. */ disableSortBy?: boolean; /** Set the sort order for the table. */ sort?: 'none' | 'ascending' | 'descending'; /** Adjust the width of the table head cell. */ width?: string | number | undefined; } export declare const TableHeadCell: React.FC; export default TableHeadCell; export { styles }; //# sourceMappingURL=TableHeadCell.d.ts.map