export interface TokenSavePaths { projectKey: string; dataDir: string; historyFile: string; rawDir: string; } export declare function projectKeyForPath(projectPath: string): Promise; export declare function dataDirForKey(projectKey: string): string; export declare function resolveTokenSavePaths(projectPath: string): Promise;