export declare const JwtHelper: { createJwt(toBeSigned: Uint8Array, signature: Uint8Array): Promise; parseJwt(jwt: string): Promise<{ header: any; payload: any; signature: Uint8Array; toBeSigned: Uint8Array; }>; createToBeSigned(header: object, payload: object): Promise>; };