import type { DeployContext, DeployDriver } from "./targets.js"; export declare class AciDriver implements DeployDriver { readonly name = "aci"; preview(ctx: DeployContext): Promise; deploy(ctx: DeployContext): Promise; private resolveOutDir; } export declare function aciCreateArgs(options: { resourceGroup: string; containerName: string; image: string; registry: string; location?: string; dnsNameLabel?: string; identity: string; cpu: string; memoryGb: string; port: string; }): string[]; //# sourceMappingURL=aci.d.ts.map