export interface ResolvedScriptCommand { command: string; args: string[]; /** Existing local files that can change the command's behavior. */ referencedFiles: string[]; } export declare function isScriptFileInterpreter(commandPath: string): boolean; export declare function resolveScriptCommand(commandLine: string, baseCwd?: string): ResolvedScriptCommand;