declare class PasswordManager { password: string; lock(password?: string): Promise; unlock(password?: string): Promise; getPassword(): Promise; getPrivateKey(publicKey: string): Promise; getPrivateKeys(): Promise; getPublicKeys(): Promise; addPrivateKey(privateKeyStr?: string): Promise; removePrivateKey(privateKey: string): Promise; } declare const passwordManager: PasswordManager; export default passwordManager;