/** * Get standard paths for file storage following OS conventions */ export declare function getAppPaths(): { homeDir: string; tempDir: string; dataDir: string; logDir: string; tempFilesDir: string; analysisDir: string; getPromptPath: (filename: string) => string; getAnalysisPath: (filename: string) => string; getLogPath: (filename: string) => string; }; /** * Ensure all required directories exist */ export declare function ensureAppDirectories(): Promise;