export declare const keyStoreServicePath = "/services/keyStore"; export declare const KeyStoreService: unique symbol; export interface KeyStoreService { setPassword(service: string, account: string, password: string): Promise; getPassword(service: string, account: string): Promise; deletePassword(service: string, account: string): Promise; findPassword(service: string): Promise; findCredentials(service: string): Promise>; } //# sourceMappingURL=key-store.d.ts.map