import type { PackageDependency } from '../types';
interface Ctx {
    deps: PackageDependency[];
    perlVersion?: string;
    phase?: string;
    tempPhase?: string;
    depName?: string;
    currentValue?: string;
}
export declare function parse(content: string): Pick<Ctx, 'deps' | 'perlVersion'> | null;
export {};
