import type { Logger } from '@sap-ux/logger'; import type { DataAccess } from '.'; import type { ServiceOptions } from '../types'; /** A hybrid store * Stores serializable properties on the filesystem * The properties need to be decorated with `@serilizable` annotations * * Sensitive properties (decorated with `@sensitiveData`) will be stored * in the system's secure store */ export declare function getHybridStore(logger: Logger, options?: ServiceOptions): DataAccess; //# sourceMappingURL=hybrid.d.ts.map