import { Uint8ArrayConsumer } from './uint8array-consumer'; export type Decoder = (val: Uint8ArrayConsumer) => string | number | object | undefined; export declare const decoders: { [key: string]: Decoder; };