import type { Codec } from 'protons-runtime'; import type { Uint8ArrayList } from 'uint8arraylist'; export interface InfoOptions { peerId?: string; } export declare namespace InfoOptions { const codec: () => Codec; const encode: (obj: Partial) => Uint8Array; const decode: (buf: Uint8Array | Uint8ArrayList) => InfoOptions; } export interface InfoResponse { peerId: string; multiaddrs: string[]; agentVersion: string; protocolVersion: string; protocols: string[]; } export declare namespace InfoResponse { const codec: () => Codec; const encode: (obj: Partial) => Uint8Array; const decode: (buf: Uint8Array | Uint8ArrayList) => InfoResponse; } //# sourceMappingURL=root.d.ts.map