import { Selector } from '@reduxjs/toolkit'; /** * This hook uses JSON.stringify to perform a equality check. * This approach is sensitive to the properties ordering and shouldn't be used * for usecases where that matters. * * @param selector * @returns */ export declare function useDeepEqualSelector(selector: Selector): unknown;