import { IPFS } from "ipfs-core"; interface Status { connected: boolean; lastConnectedAt: number; latency: null | number; } export declare function keepConnectionWith(ipfs: IPFS, peer: string, signal: AbortSignal, report: (peer: string, status: Status) => void): void; export {};