import { AppService, AppFileSystemService, KeystoreService as CoreKeystoreService, KeystoreProvider } from "@wocker/core"; export declare class KeystoreService extends CoreKeystoreService { protected readonly appService: AppService; protected readonly fs: AppFileSystemService; protected providers: Map; constructor(appService: AppService, fs: AppFileSystemService); hasProvider(name: string): boolean; provider(name?: string): KeystoreProvider; get(keys: string | string[], byDefault?: string): Promise; set(key: string, value: string): Promise; delete(key: string): Promise; registerProvider(name: string, provider: KeystoreProvider): void; }