import type { RepoProfile } from '../analyzers/types.js'; export interface GeneratedConfig { projectName: string; metaphor: string; techStack: string[]; sprintCadence: 'weekly' | 'biweekly' | 'monthly'; team: Record; } /** * Generate a SLOPE config from a RepoProfile. * Extracts project name, tech stack, cadence, and team from analyzer data. */ export declare function generateConfig(profile: RepoProfile): GeneratedConfig; //# sourceMappingURL=config.d.ts.map