/** * Safely execute a shell script string in Linux * @param script - The shell script content */ export declare function runScript(script: string, options?: { timeout?: number; safeEnv: boolean; }): Promise<{ code: number; stdout: string; stderr: string; timedOut?: boolean; }>;