import { type DataStore } from "./data-store.svelte.js"; export interface AppData { name: string; version: string; description: string; author: string; repository?: string; license?: string; homepage?: string; icon?: string; } export type AppStore = DataStore; export declare function createAppStore(): AppStore; export declare function getAppStore(): AppStore;