import { CID } from 'multiformats'; import { ResolveType } from '../types.js'; interface CodecWrapper { decode(bytes: Uint8Array): DecodedType; resolve(path: string, bytes: Uint8Array): Promise>; } export default function getCodecForCid(cid: CID): Promise; export {};