import { DockerConfiguration } from "../../interfaces/configuration/DockerConfiguration"; import { DockerContainerType } from "../../interfaces/docker-container-types"; import { EnvironmentWithConfiguration } from "../../interfaces/environment"; export declare const executeBashCommandOnEnvironment: (command: string, environment: EnvironmentWithConfiguration, showConsoleOutput?: boolean, dockerContainerType?: DockerContainerType) => Promise; /** * Central function for executing any kind of bash command and joining command parts together * */ export declare const executeBashCommandParts: (commandParts: string[], showConsoleOutput?: boolean) => Promise; /** * Central function for executing any kind of bash command * */ export declare const executeBashCommand: (command: string, showConsoleOutput?: boolean) => Promise; export declare const getDockerCommandPrefix: (configuration: DockerConfiguration, dockerContainerType: DockerContainerType) => string;