import { default as React } from 'react'; export interface HeaderCellProps { children: React.ReactNode; textAlign?: "start" | "end" | "center"; onClick?: (e: React.MouseEvent | React.KeyboardEvent) => void; /** * PRIVATE * Prop for internal implementation. Matches the cell * to it's corresponding entry in `colVisibility` */ _colIndex?: number; } /** * A cell unique to the table header. * This component renders as a button when an `onClick` handler is passed. * * This component is an ARIA live region so the header cell content is * re-announced if it changes as the result of user interaction. */ declare const HeaderCell: ({ children, textAlign, onClick, _colIndex, }: HeaderCellProps) => React.JSX.Element; export default HeaderCell; //# sourceMappingURL=HeaderCell.d.ts.map