/** * install subcommand — Install platform assets. */ import type { InstallFlags } from "../../install/types"; import type { Subcommand } from "./types"; export declare function parsePlatformArg(platformRaw: string | undefined, allowAll?: boolean): InstallFlags["platform"] | "all" | undefined; export declare const installCommand: Subcommand;