type EnvironmentContextValue = { cwd: string; isGit: boolean; platform: string; shell: string; }; export declare function getEnvironmentContext(sessionID: string): EnvironmentContextValue | undefined; export declare function createEnvironmentContext(directory: string): (input: unknown, output: unknown) => Promise; export {};