import { type SkillActor as SkillActorType } from "@opengeni/contracts"; import { type AccessGrantAuthorization } from "@opengeni/core"; /** Use authenticated request provenance, never a caller-supplied actor or subject alone. */ export declare function skillInstallerActor(access: AccessGrantAuthorization): SkillActorType; /** Non-Skill component removals remain available to their existing callers. */ export declare function skillRemovalActor(access: AccessGrantAuthorization): SkillActorType | undefined;