import { EventCallback, UnlistenFn } from '@tauri-apps/api/event'; export declare enum StoreEvent { ConfigChange = "tauri-store://config-change", StateChange = "tauri-store://state-change", Unload = "tauri-store://unload" } /** * Listen for store events emitted to the current webview window. */ export declare function listen(event: StoreEvent, listener: EventCallback): Promise;