import type { ModuleInstallCommand } from "@antelopejs/interface-core/config"; import type { CommandRunner, DebugLogger } from "./types"; export declare function normalizeCommands(installCommand?: ModuleInstallCommand): string[]; export declare function runInstallCommands(exec: CommandRunner, logger: DebugLogger, label: string, folder: string, installCommand?: ModuleInstallCommand): Promise; export declare function expandHome(input: string): string;