import { Store } from "../Store"; /** * shouldStateUpdate logic. * use Store#shouldStateUpdate if it is implemented in the Store. * In other case, use strict equal `===` by default. */ export declare const shouldStateUpdate: (store: Store, prevState: any, nextState: any) => boolean;