import { Data } from "./cborTypes";
import { DecodedCOSEStructure } from "./coseTypes";
export declare function encodeToBeSigned(bodyProtected: Uint8Array, payload: Uint8Array): Uint8Array;
export declare const decodeCBOR: (buf: Uint8Array) => Data;
export declare const decodeCOSE: (buf: Uint8Array) => DecodedCOSEStructure;
