import { MittwaldAPIV2Client } from "@mittwald/api-client"; import { CommandType } from "../../context/FlagSetBuilder.js"; import { Config } from "@oclif/core"; export declare const containerFlags: import("../../context/FlagSetBuilder.js").ContextFlags<"container">, containerArgs: import("../../context/FlagSetBuilder.js").ContextArgs<"container">, withContainerId: (apiClient: MittwaldAPIV2Client, command: "flag" | "arg" | CommandType<"container">, flags: { [k: string]: unknown; }, args: { [k: string]: unknown; }, cfg: Config) => Promise; export declare function withContainerAndStackId(apiClient: MittwaldAPIV2Client, command: CommandType<"project"> | "flag" | "arg", flags: { [k: string]: unknown; }, args: { [k: string]: unknown; }, cfg: Config): Promise<[string, string]>; /** * Resolves a container given by ID, short ID or service name within a project * to its full service ID and the ID of the stack it belongs to. */ export declare function findContainerInProject(apiClient: MittwaldAPIV2Client, projectId: string, containerId: string): Promise<[string, string]>;