export interface SecureStore { /** Save a value in the secure store. Can overwrite previous values * * Returns `true` if successful, `false` if not */ save(service: string, key: string, value: T): Promise; /** Retrieves a previous stored key. Returns undefined if not found */ retrieve(service: string, key: string): Promise; /** Delete a previously stored key. * * Returns `true` if successful, `false` if not * */ delete(service: string, key: string): Promise; /** Get all the values stored for the service * @param service */ getAll(service: string): Promise<{ [key: string]: T; }>; } //# sourceMappingURL=types.d.ts.map