import React from 'react'; import { type TableSectionProps } from './TableSection'; export type TableHeaderProps = TableSectionProps & { /** * Use to make a header stick to the top of the table when scrolled * This will require setting a height or maxHeight on the Table or its parent * @default false */ sticky?: boolean; }; export declare const tableHeaderStaticClassName = 'cds-table-header'; export declare const TableHeader: React.MemoExoticComponent< ({ children, sticky, testID, ...props }: TableHeaderProps) => import('react/jsx-runtime').JSX.Element >; //# sourceMappingURL=TableHeader.d.ts.map