export interface AbortHandle { readonly id: string; readonly controller: AbortController; readonly registeredAt: string; readonly reason: string; } export declare class AbortRegistry { private readonly handles; register(id: string, reason: string): AbortHandle; unregister(id: string): void; abortAll(reason: string): readonly AbortHandle[]; size(): number; list(): readonly AbortHandle[]; } //# sourceMappingURL=abort-registry.d.ts.map