/// import { HeaderProps } from './Header'; export interface FixedHeaderProps extends HeaderProps { noData: boolean; colWidths: number[]; columCount: number; direction: 'ltr' | 'rtl'; fixHeader: boolean; } declare function FixedHeader({ noData, columns, flattenColumns, colWidths, columCount, stickyOffsets, direction, fixHeader, ...props }: FixedHeaderProps): JSX.Element; export default FixedHeader;