import { Field, FieldGet } from '../types';
export declare const Encode: <T extends Field>(struct: T, obj: FieldGet<T>) => Uint8Array;
export declare const Decode: <T extends Field>(struct: T, buffer: Uint8Array) => FieldGet<T>;
export declare const Default: <T extends Field>(struct: T) => FieldGet<T>;
