import React from "react"; import { VirtualTableRowProps } from "./types.js"; /** * The same fix `VirtualTable` carries, one level down: `React.memo` takes the * props type as its own type argument, so the annotation on the call pins the * row type at the boundary and discards the `` the inner function declares. * Pinned, the row a caller passes in and the row its `onRowClick` and * `rowClassName` receive were unrelated types, which is what every consumer was * paying for with a cast. */ export declare const VirtualTableRow: (props: VirtualTableRowProps) => React.ReactElement | null;