import { DecodeContext } from '../decode'; import { ValueType } from '../types'; export type DecodeMethod = (context: DecodeContext) => any; export declare const DECODERS: Map; export declare function decodeValue(context: DecodeContext): any;