import type { PackageFileContent } from '../types';
/**
 * extractPackageFile scans the folder of the package files
 * and looking for .{packageName}-{version}.pkg
 */
export declare function extractPackageFile(_content: string, packageFile: string): Promise<PackageFileContent | null>;
