import React from 'react'; import type { ColumnShape } from './types'; export interface TableHeaderRowProps { isScrolling?: boolean; className?: string; style?: React.CSSProperties; columns: ColumnShape[]; headerIndex?: number; cellRenderer?: (args: any) => React.ReactNode; headerRenderer?: React.ComponentType | React.ReactElement | ((props: any) => React.ReactNode); expandColumnKey?: string; expandIcon?: React.ComponentType; tagName?: React.ElementType; [key: string]: any; } /** * HeaderRow component for BaseTable */ declare const TableHeaderRow: React.FC; export default TableHeaderRow;