import type { MittwaldAPIV2 } from "@mittwald/api-client"; type IngressPath = MittwaldAPIV2.Components.Schemas.IngressPath; /** * Flags for mapping URL paths to targets (apps, URLs or containers) of a * virtual host. Shared between the `virtualhost create` and `virtualhost * update` commands. */ export declare const pathMappingFlags: { "path-to-app": import("@oclif/core/interfaces").OptionFlag; "path-to-url": import("@oclif/core/interfaces").OptionFlag; "path-to-container": import("@oclif/core/interfaces").OptionFlag; }; /** * Builds the list of {@link IngressPath} entries from the values of the * {@link pathMappingFlags}. */ export declare function buildIngressPaths(flags: { "path-to-app"?: string[]; "path-to-url"?: string[]; "path-to-container"?: string[]; }): IngressPath[]; export {};