/** * Per-project Docker image builder * * Builds a project-specific Docker image and streams build logs to the API. */ import { ApiClient } from '../api-client'; /** * Build a per-project Docker image using the given Dockerfile. * Streams stdout/stderr to both the host terminal and the API (for real-time log viewing). */ export declare function buildProjectImage(tenantCode: string, projectCode: string, baseVersion: string, dockerfilePath: string, apiClient?: ApiClient, agentId?: string): Promise; //# sourceMappingURL=project-image-builder.d.ts.map