export interface LicenseBoundaryViolation { path: string; marker: string; } export interface LicenseBoundaryResult { ok: boolean; violations: LicenseBoundaryViolation[]; } export interface LicenseBoundaryOptions { packageFiles: string[]; } export declare function scanForkSourceLicenseBoundary(root: string, options: LicenseBoundaryOptions): Promise;