interface ManifestOptions { key?: string; url?: string; onHeal?: (event: HealEvent) => void | Promise; } interface HealEvent { url: string; statusCode: number; healStatus: string; replayStatusCode: number | null; healMs: number; operations?: unknown[]; } declare const VERSION = "7.0.0"; /** Install once, before libraries capture their own reference to global fetch. */ declare function manifest(options?: ManifestOptions): void; export { type HealEvent, type ManifestOptions, VERSION, manifest };