import { Value, EnumType } from'./types';
/**
* Encode a value to binary format
*/export declare functionencode(value: Value | EnumType): Uint8Array;
/**
* Decode a binary format to value
*/export declare functiondecode(input: Uint8Array): Value | EnumType;