import { default as React, HTMLAttributes } from 'react'; export interface TableHeadProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; } declare const TableHead: React.ForwardRefExoticComponent>; export default TableHead; //# sourceMappingURL=TableHead.d.ts.map