import { Dispatch } from 'redux'; import { IAdvancedStore } from '../../../types'; import { InitLoadManagerActionPayloadType } from '../types'; declare type ParamsType = InitLoadManagerActionPayloadType & { eventNameToCancelRequests?: string; dispatch: Dispatch; dependencies?: Record; store: IAdvancedStore; }; export declare function initLoadManagerWorkerSaga({ dispatch, eventNameToCancelRequests, requestConfigList, options: { requestsSectionId, fullActionLoadingStop, fullActionLoadingStart, setAppErrorAction, requestBeforeAllConfig, }, dependencies, store, }: ParamsType): Generator | import("redux-saga/effects").ForkEffect | import("redux-saga/effects").PutEffect<{ type: string; }>, void, unknown>; export {};