/// /** * This component renders the selection box and enables the selection box to be * manipulated with the keyboard and mouse. It also triggers scrolling when the * selection moves. */ export declare const Selection: ({ numStickyColumns, headers, rowHeight, }: { numStickyColumns: number; headers: { height: number; }[]; rowHeight: number; }) => JSX.Element | null;