export type LicenseBucket = "copyleft" | "permissive" | "unknown"; export interface DetectedLicense { id: string | null; bucket: LicenseBucket; } export declare function detectLicenseFromContent(text: string): DetectedLicense; //# sourceMappingURL=license-detect.d.ts.map