import { AsyncContext } from './types'; /** * Create an AsyncContext for use in async handlers. * * @param abortController - The AbortController for cancellation * @param isCancelledOrAborted - Function to check if cancelled * @param cancel - Function to cancel the operation * @param resolver - Resolver for getting stores/services * @returns AsyncContext */ export declare function createAsyncContext(abortController: AbortController, isCancelledOrAborted: () => boolean, cancel: () => void, resolver: { get: (specOrFactory: any) => any; }): AsyncContext; //# sourceMappingURL=context.d.ts.map