import { WheelEvent } from 'react'; import { ClassName, Styles } from '../../common'; import { TableRowData, TdBaseTableProps } from '../type'; import { TableRowFixedClasses, RowAndColFixedPosition, TableColFixedClasses } from '../interface'; export declare function getColumnFixedStyles(col: TdBaseTableProps['columns'][0], index: number, rowAndColFixedPosition: RowAndColFixedPosition, tableColFixedClasses: TableColFixedClasses): { style?: Styles; classes?: ClassName; }; export declare function getRowFixedStyles(rowId: string | number, rowIndex: number, rowLength: number, fixedRows: TdBaseTableProps['fixedRows'], rowAndColFixedPosition: RowAndColFixedPosition, tableRowFixedClasses: TableRowFixedClasses, virtualTranslateY?: number): { style: Styles; classes: ClassName; }; export default function useFixed(props: TdBaseTableProps): { tableWidth: import("react").RefObject; tableElmWidth: import("react").RefObject; thWidthList: import("react").RefObject<{ [colKey: string]: number; }>; isFixedHeader: boolean; isWidthOverflow: boolean; tableContentRef: import("react").RefObject; isFixedColumn: boolean; showColumnShadow: { left: boolean; right: boolean; }; rowAndColFixedPosition: RowAndColFixedPosition; virtualScrollHeaderPos: { left: number; top: number; }; scrollbarWidth: number; setData: import("react").Dispatch>; refreshTable: () => void; setTableElmWidth: (width: number) => void; emitScrollEvent: (e: WheelEvent) => void; updateThWidthListHandler: () => void; updateColumnFixedShadow: (target: HTMLElement, extra?: { skipScrollLimit?: boolean; }) => void; setUseFixedTableElmRef: (val: HTMLTableElement) => void; getThWidthList: (type?: "default" | "calculate") => { [colKey: string]: number; }; updateThWidthList: (trList: HTMLCollection | { [colKey: string]: number; }) => { [colKey: string]: number; }; updateTableAfterColumnResize: () => void; };