export type EnvironmentInfo = { cwd: string; isGit: boolean; platform: string; shell: string; }; export declare function detectGit(cwd: string): boolean; export declare function getEnvironmentSection(env: EnvironmentInfo): string;