/// <reference types="node" />
import { Cell } from '@ipfn/cell';
export declare type Bytes = Buffer | string;
export interface Codec {
    name: string;
    hex?: string;
    encode(cell: Cell): Bytes;
    decode(body: Bytes): Cell;
}
