import type { LambdaArchitecture } from "../manifest/schemas.js"; export declare function dockerPlatformForArchitecture(architecture: LambdaArchitecture): string; /** * The CPU architecture every fjall ECS task runs on. Coupled to the construct * pin `runtimePlatform.cpuArchitecture: CpuArchitecture.ARM64` in * `components/infrastructure/lib/resources/aws/compute/ecsTaskDefinition.ts` * (both task-definition call sites) — ECS manifest entries carry no * `architecture` field, so build orchestrators consume this constant to * enumerate the implicit constraint when an ECS service shares a build group * with an architecture-declaring Lambda. */ export declare const ECS_TASK_ARCHITECTURE: LambdaArchitecture;