export interface JpsParseResults { processes: JpsProcess[]; } export interface JpsProcess { pid: number; name?: string; className?: string; args?: string[]; } export declare function parseJps(output: string, stderr?: string): JpsParseResults; //# sourceMappingURL=jps-parse.d.ts.map