import type { RequestContext } from './context'; export declare function createPendingManager(): { pendingContexts: RequestContext[]; configHooks: { before: (_: any, ctx: any) => void; finally: (ctx: any) => void; dispose: () => void; }; hasPending: () => boolean; clearPending: () => void; clearPendingWithCancel: () => void; };