/** * Task Mapper — maps pipeline stages to execution roles and timeouts. * (spec §FR-06b/06c/06d, arc42 §6.6) */ import type { StageId } from '../types/index.js'; export interface StageRoleMapping { role: string; timeoutSeconds: number; } export declare function getStageRoleMapping(stage: StageId): StageRoleMapping | undefined; export declare function getStageRole(stage: StageId): string | undefined; export declare function getStageTimeout(stage: StageId): number; //# sourceMappingURL=task-mapper.d.ts.map