import * as React from 'react'; import { GridApiCommon } from '../../models/api/gridApiCommon'; import { OutputSelector } from '../../utils/createSelector'; import { fastObjectShallowCompare } from '../../utils/fastObjectShallowCompare'; export declare const objectShallowCompare: typeof fastObjectShallowCompare; export declare const useGridSelector: , T>(apiRef: React.MutableRefObject, selector: OutputSelector | ((state: Api["state"]) => T), equals?: (a: T, b: T) => boolean) => T;