import { type AsyncStorage } from "./persisted.js"; /** * tauriStorage: an asynchronous Storage API based on tauri-plugin-store * * requires store permissions to be set: https://beta.tauri.app/features/store/ * * In order to use in a isomorphic setting (web/tauri), use: * ```ts * const isFallback = !window.__TAURI_INTERNALS__; * const storage = isFallback ? localStorage : tauriStorage(); * ```` */ export declare function tauriStorage(name?: string): AsyncStorage;