import { Job } from '@expo/eas-build-job'; import { bunyan } from '@expo/logger'; interface BuildContextOptions { workingdir: string; logger: bunyan; } declare class BuildContext { readonly job: TJob; readonly workingdir: string; readonly logger: bunyan; constructor(job: TJob, options: BuildContextOptions); get buildDirectory(): string; get reactNativeProjectDirectory(): string; } export { BuildContext, BuildContextOptions };