import type { SecureStore } from './types'; import type { Logger } from '@sap-ux/logger'; export declare class DummyStore implements SecureStore { private readonly log; constructor(log: Logger); save(service: string, key: string, _value: T): Promise; retrieve(service: string, key: string): Promise; delete(service: string, key: string): Promise; getAll(service: string): Promise<{ [key: string]: T; }>; } //# sourceMappingURL=dummy-store.d.ts.map