import http from 'http';
import https from 'https';
declare enum SupportedPlatform {
    DARWIN = "darwin",
    LINUX = "linux",
    WIN32 = "win32"
}
export declare function platform(): SupportedPlatform;
export declare function getBinaryFilePath(version: string): string;
export declare function downloadServerBinaries(binaryVersion: string, proxyAgent?: {
    http: http.Agent;
    https: https.Agent;
}): Promise<void>;
export {};
