import * as __types from './types'; import { ReadonlyStoreApi } from './types'; export * from './types'; import { UseBoundStoreWithEqualityFn } from 'zustand/traditional'; export * from './array-selector'; export * from './default-shallow'; /** * This enchances the traditional store hook so access to the provided store is shallow by default. * It also adds another style of selector: an array of keys from the provided store. */ declare const withZustandards: (storeHook: UseBoundStoreWithEqualityFn>) => ((selector: A, equals?: ((a: __types.PartObjFromArrOfKeys, b: __types.PartObjFromArrOfKeys) => boolean) | undefined) => __types.PartObjFromArrOfKeys) & { (): T; (selector: (state: T) => U_1, equalityFn?: ((a: U_1, b: U_1) => boolean) | undefined): U_1; } & ReadonlyStoreApi; export { withZustandards };