export interface IKeyManager { signWebToken: (payload: any) => Promise; getPubKey: () => Promise; deriveSharedSecret?: (publicKey: string) => Promise; } export declare const isInstanceOfKeyManager: (object: any) => boolean;