import type { Row } from '../../hooks/useTable/types.js'; /** * Checks if a row is disabled. * @param cacheMap - save lazily to this map * @param row - row to check * @param isDisabledCallback - optionally for getting notified when isDisabled is called (for example, used to test performance) * @returns */ export declare function isRowDisabled(cacheMap: Map, row: Row | undefined, isDisabledCallback?: (row: Row | undefined) => void): boolean;