export declare const sign: (header: any, payload: any, privateKeyJwk: any) => Promise<string>;
export declare const verify: (jws: string, publicKeyJwk: any) => Promise<boolean>;
