import { type FoundSkillSource } from '../skill/find.js'; export interface BundleCandidateSource { name: string; preferenceIndex: number | null; platform: string; scope: FoundSkillSource['origin']; origin: FoundSkillSource['origin']; factory?: { query: string; }; root: string; description: string; skillMd: string; references?: FoundSkillSource['references']; scripts?: FoundSkillSource['scripts']; hash: string; } export interface BundleCandidate { name: string; preferenceIndex: number | null; status: 'available' | 'missing' | 'ambiguous'; sources: BundleCandidateSource[]; } export declare function discoverBundleCandidates(options: { projectRoot: string; homeDir?: string; preferences?: string[] | null; }): Promise; //# sourceMappingURL=candidates.d.ts.map