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