export declare const create: ({ type, payload }: { type: string; payload: any; }) => Uint8Array; export declare const toObject: ({ type, buffer }: { type: string; buffer: Uint8Array; }) => { [k: string]: any; };