import { StorageEngine } from "./types";
/**
 * Default storage engine that attempts to use @aivron/sync-storage first,
 * then falls back to window.localStorage, and finally uses an in-memory fallback.
 */
declare const defaultStorageEngine: StorageEngine;
export default defaultStorageEngine;
