import type { ClientId } from '@zhixuan92/multi-model-agent-core'; interface RecordProvisionedFailure { clientId: ClientId; reason: string; } /** * Record every packaged skill against each client that was ACTUALLY provisioned * — never a client that was merely requested, skipped, or failed. * * Returns the packaged skills it could not read, so the caller can surface them * the way its own outcome shape expects rather than this module inventing one. */ export declare function recordProvisionedSkills(provisioned: readonly ClientId[], skillsRoot: string, homeDir?: string): RecordProvisionedFailure[]; export {}; //# sourceMappingURL=record-provisioned.d.ts.map