import { NostrEvent } from "../helpers/event.js"; import { MonoTypeOperatorFunction } from "rxjs"; import { IEventClaims } from "../event-store/interface.js"; /** keep a claim on any event that goes through this observable, claims are removed when the observable is unsubscribed or completes */ export declare function claimEvents(claims: IEventClaims): MonoTypeOperatorFunction;