import { Store, Action, AnyAction } from 'redux';
export declare const wrapStore: <S, A extends Action<any> = AnyAction>(worker: Worker, initialState: S, enhancer?: Function | undefined) => Store<S, A>;
