/** * App Utilities * * Helper functions for project creation and management. */ import type { AppState } from "./state.js"; export declare function generateRandomSlug(): string; export declare function getLocalProjectsFromState(appState: AppState): Array<{ slug: string; path: string; }>; //# sourceMappingURL=utils.d.ts.map