/** Reserved pseudo-project whose memories live directly under `.generic/`. */ export declare const GENERIC_PROJECT_NAME = ".generic"; export interface ProjectParts { org: string; repo: string; } export declare function parseGitRemote(remote: string): string | undefined; export declare function inferProjectName(cwd?: string): Promise; export declare function projectParts(projectName: string): ProjectParts; export declare function isGenericProjectName(projectName: string): boolean; export declare function safeSegment(value: string): string;