Version: 1.0.31.0.41.1.01.2.01.2.11.2.21.2.31.2.41.2.51.3.0-alpha.01.3.0-alpha.11.3.0-alpha.21.3.0-alpha.31.3.0-alpha.41.3.0-alpha.51.3.0-alpha.61.3.0-alpha.71.3.0-alpha.81.3.0-alpha.91.3.0-alpha.101.3.0-beta.01.3.0-beta.11.3.01.3.11.3.21.3.31.3.41.3.51.3.61.4.01.5.01.5.11.6.0-alpha.01.6.0-alpha.11.6.0-alpha.21.6.0-beta.01.6.0-rc.01.6.0-rc.11.6.01.6.11.6.21.7.0-beta.01.7.0-beta.11.7.0-rc.01.7.01.7.11.7.21.8.0-rc.01.8.01.8.11.8.21.8.31.8.41.8.51.8.61.9.0-alpha.01.9.0-alpha.11.9.0-alpha.21.9.0-beta.01.9.0-rc.01.9.0-rc.11.9.01.9.11.9.21.9.31.9.41.9.52.0.0-alpha.02.0.0-alpha.12.0.0-alpha.22.0.0-alpha.32.0.0-alpha.42.0.0-alpha.52.0.0-alpha.62.0.0-beta.0
import { createSelector } from 'reselect';
/**
* "Draft-Safe" version of `reselect`'s `createSelector`:
* If an `immer`-drafted object is passed into the resulting selector's first argument,
* the selector will act on the current draft value, instead of returning a cached value
* that might be possibly outdated if the draft has been modified since.
* @public
*/
export declare const createDraftSafeSelector: typeof createSelector;