/** * Copyright (c) 2026, Salesforce, Inc., * All rights reserved. * For full license text, see the LICENSE.txt file */ import type { FeatureMetadata } from "./types.js"; /** * Search features by keyword with scoring and ranking */ export declare function searchFeatures(query: string): FeatureMetadata[]; /** * Get feature metadata or throw a descriptive error with search suggestions. * Use this when a feature MUST exist (e.g., install commands). */ export declare function getFeatureMetadataOrThrow(featureName: string): Readonly; //# sourceMappingURL=feature-search.d.ts.map