import { type SemVer } from 'semver';
import { type ScannerProperties } from './types';
export declare function fetchServerVersion(properties: ScannerProperties): Promise<SemVer>;
export declare function serverSupportsJREProvisioning(properties: ScannerProperties): Promise<boolean>;
export declare function fetchJRE(properties: ScannerProperties): Promise<string>;
