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