/** * Copyright (c) 2026, Salesforce, Inc., * All rights reserved. * For full license text, see the LICENSE.txt file */ import type { FileCopySchema, InstallationContext } from "./types.js"; /** * Resolve and install feature dependencies recursively * Follows the exact workflow: install package -> load schema -> recursively process */ export declare function resolveFeatureDependencies(dependencies: readonly string[], context: InstallationContext): Promise; /** * Process the "own" operations for a feature (package deps + copies), * excluding recursive feature dependency resolution. * Used by cli.ts for the main feature's section. */ export declare function processFeatureOwnOperations(schema: FileCopySchema, packageName: string, context: InstallationContext): Promise; //# sourceMappingURL=dependency-resolver.d.ts.map