type SdkInfo = {
    sdkVersion: string;
    sdkPath: string;
};
export declare const PACKAGE_OVERRIDES_FILE = "data/PackageOverrides.txt";
export declare const PACKS_PATH = "/packs/Microsoft.NETCore.App.Ref/";
export declare function parseSdkInfoFromDotnetOutput(infoOutput: string): SdkInfo;
export declare function extractSdkInfo(projectPath: string): Promise<SdkInfo>;
export declare function findLatestMatchingVersion(input: string, sdkVersion: string): string;
export {};
