/** * Work Item Type Resolver — resolves a task's work item type from its labels. * * Uses the profile's workItems.typeSource configuration to find a matching label * (e.g., 'type:bug' → 'bug'), validates against known types, and falls back * to workItems.defaultType. */ import type { MethodologyProfile } from './types.js'; /** * Resolve the work item type for a task from its labels. * * @param labels - The task's GitHub labels (string array) * @param profile - The active methodology profile * @returns The resolved work item type ID (e.g., 'story', 'bug', 'spike') */ export declare function resolveWorkItemType(labels: string[], profile: MethodologyProfile): string; //# sourceMappingURL=work-item-resolver.d.ts.map