/** * Copyright (c) 2026, Salesforce, Inc., * All rights reserved. * For full license text, see the LICENSE.txt file */ import type { FeaturesMetadata } from "./types.js"; /** * Aggregates individual feature.ts files from a base directory into a FeaturesMetadata object. * Scans each subdirectory for a feature.ts file, imports it, and collects the metadata. * * @param featureBaseDir - The directory containing feature subdirectories * @returns The aggregated features metadata * @throws If duplicate feature keys are found */ export declare function aggregateFeatures(featureBaseDir: string): Promise; //# sourceMappingURL=aggregate-features.d.ts.map