import { LiftedState } from './reducer'; export declare function difference(first: any[], second: any[]): any[]; /** * Provides an app's view into the state of the lifted store. */ export declare function unliftState(liftedState: LiftedState): any; /** * Lifts an app's action into an action on the lifted store. */ export declare function liftAction(action: any): { type: string; action: any; timestamp: number; };