import { Cell } from '@ipfn/cell';
import { Bytes } from './codec';
export declare const codec: {
    name: string;
    encode: (cell: Cell) => Bytes;
    decode: (body: Bytes) => Cell;
};
