import { type Platform } from './platforms.js'; import type { InstallScope } from './types.js'; export interface CanonicalSkillRootOwner { platform: Platform; canonicalSkillsDir: string; hasOwnershipEvidence: boolean; sharedCanonicalRoot: boolean; } interface ResolveCanonicalSkillRootOwnersOptions { respectDetectionPaths?: boolean; } /** Resolve exactly one platform owner for every canonical Skill root. */ export declare function resolveCanonicalSkillRootOwners(baseDir: string, scope: InstallScope, options?: ResolveCanonicalSkillRootOwnersOptions): Promise; export {}; //# sourceMappingURL=skill-root-owner.d.ts.map