import React from 'react'; export interface TableHeaderCellProps { /** Child element(s) */ children: React.ReactNode | React.ReactNode[]; /** Indicates if the current column is sortable */ sortable?: boolean; /** The initial sorting order of the column */ initialSortOrder?: 'ASC' | 'DESC'; /** Callback on sort event */ onSort?: Function; /** Indicates if the table loading is in progress */ loading?: boolean; } /** Contains the th elements */ declare const HeaderCell: ({ children, sortable, initialSortOrder, onSort, loading, ...other }: TableHeaderCellProps) => JSX.Element; export default HeaderCell;