import type { MouseEvent } from "react"; export interface SizingContext { rowHeight: number; resizeColumn: (colIdx: number, width: number) => void; onResizeHandleMouseDown: (event: MouseEvent) => void; } export declare const SizingContext: import("react").Context; export declare const useSizingContext: () => SizingContext;