export declare const VERSION: any; export declare const REGEXP_IP: RegExp; export declare const REGEXP_PORT: RegExp; export declare const DEFAULT_PORT = 12345; export declare const DEFAULT_TIMEOUT = 20000; export declare function formatIpListInput(input: string, defaultValue: string): string; export declare const X_CONTENT_MD5 = "x-content-md5"; export declare const X_MODULE = "x-module"; export declare const MODULE_TYPE_FILE = "file"; export declare const X_TOKEN = "x-token"; export declare function pickConfig(commander: any, keys: string[]): any; export interface IServerAddress { host: string; port: number; path: string; auth: string; } export declare function parseServerAddress(str: string): IServerAddress; export declare function getAllFilesFromDir(dir: string): Promise; export declare function getFileMd5(filepath: string): Promise;