export { versions } from "./versions";
export interface BundleOptions {
    gatlingHome: string;
}
export interface BundleInstallOptions extends BundleOptions {
    bundleFilePath: string;
}
export interface ResolvedBundle {
    graalvmHome: string;
    jvmClasspath: string;
}
export declare const installBundleFile: (options: BundleInstallOptions) => Promise<ResolvedBundle>;
export declare const resolveBundle: (options: BundleOptions) => Promise<ResolvedBundle>;
