/** * Get default configuration file path */ export declare function getDefaultConfigPath(): string; /** * Get default data directory path * Uses global config location when running from global installation */ export declare function getDefaultDataPath(): string; /** * Ensure data directory exists */ export declare function ensureDataDirectory(): Promise; /** * Get repository local path */ export declare function getRepositoryPath(repoName: string): string; /** * Get database path */ export declare function getDatabasePath(): string; /** * Get log file path */ export declare function getLogPath(logName: string): string; /** * Resolve path relative to current working directory */ export declare function resolvePath(inputPath: string): string; /** * Check if path exists and is accessible */ export declare function isAccessible(filePath: string): Promise; /** * Create directory if it doesn't exist */ export declare function ensureDirectory(dirPath: string): Promise; /** * Get relative path from current directory */ export declare function getRelativePath(filePath: string): string; //# sourceMappingURL=paths.d.ts.map