export interface ProjectInfo { name: string; lang: string | null; } export declare function getProjectInfo(cwd?: string): ProjectInfo;