import { Library } from "../../schemas.js";
export type FabricLikeVersionInfo = {
    loader: Version;
    intermediary: Version;
    launcherMeta: LauncherMeta;
};
export type LauncherMeta = {
    libraries: {
        "client": Library[];
        "common": Library[];
    };
    mainClass: {
        "client": string;
    };
};
export type Version = {
    maven: string;
    version: string;
};
