import type { AddOn, AttributedFile, DependencyAttribution, Framework, Starter } from './types.js'; export interface AttributionInput { framework: Framework; chosenAddOns: Array; starter?: Starter; files: Record; } export interface AttributionOutput { attributedFiles: Record; dependencies: Array; } export declare function computeAttribution(input: AttributionInput): Promise;