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