export interface ServiceHost { platform: NodeJS.Platform; homedir: string; uid?: number; isElevated?: boolean; /** Windows安装调用者的真实SID;只作为受保护管道的最小控制身份。 */ windowsSid?: string; env: NodeJS.ProcessEnv; exec(file: string, args: string[], options?: { inherit?: boolean; ignoreError?: boolean; timeoutMs?: number; }): string; spawn(file: string, args: string[]): Promise; } export declare function createDefaultServiceHost(): ServiceHost; //# sourceMappingURL=service-host.d.ts.map