/** * Tier 1 marketplace action mappings — the 14 most-used GitHub Actions * marketplace actions, per the upstream skill's `references/marketplace-actions.md`. * * Each mapping returns: * - scriptLines: appended to job.script * - image: job-level image override (last write wins) * - services: docker:dind etc. * - cache / artifacts: native GitLab keywords * - provenance: per-step records */ import type { ActionMapping } from "./registry.js"; declare const TIER_1_MAPPINGS: ActionMapping[]; /** * Register all Tier 1 mappings into the given registry (or default). * Idempotent — call before `lookupAction` is first invoked. */ export declare function registerTier1(registry?: import("./registry.js").ActionMappingRegistry): void; export { TIER_1_MAPPINGS }; //# sourceMappingURL=tier-1.d.ts.map