export type EqualityFn = (a: T, b: T) => boolean; export declare function createFastSelector(getState: () => S, subscribe: (fn: () => void) => () => void): (selector: (state: S) => R, isEqual?: EqualityFn) => R;