declare function buildChildProcessConfig(restartReason?: string | null): { cwd: string; stdio: ("pipe" | "ignore" | "ipc")[]; execArgv: any[]; env: { [key: string]: string; TZ?: string | undefined; }; }; declare function main(): void; export { main, buildChildProcessConfig };