import type { ExtensionFactory } from "./core/extensions/types.ts"; export type PackageCommand = "install" | "remove" | "update" | "list"; export interface PackageCommandRuntimeOptions { extensionFactories?: ExtensionFactory[]; } export declare function handleConfigCommand(args: string[], runtimeOptions?: PackageCommandRuntimeOptions): Promise; export declare function handlePackageCommand(args: string[], runtimeOptions?: PackageCommandRuntimeOptions): Promise; //# sourceMappingURL=package-manager-cli.d.ts.map