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