/** * Path resolution utilities for account storage. * Extracted from storage.ts to reduce module size. */ export declare function getConfigDir(): string; export declare function getProjectConfigDir(projectPath: string): string; export declare function getProjectStorageKey(projectPath: string): string; /** * Per-project storage is namespaced under ~/.opencode/projects * to avoid writing account files into user repositories. */ export declare function getProjectGlobalConfigDir(projectPath: string): string; export declare function isProjectDirectory(dir: string): boolean; export declare function findProjectRoot(startDir: string): string | null; export declare function resolvePath(filePath: string): string; //# sourceMappingURL=paths.d.ts.map