type ExecutionResult = { exitCode: number; stdout: string; stderr: string; }; declare const executeShellCommand: (command: string, cwd?: string) => Promise; declare const getErrorCount: (linterCommand: string, cwd?: string) => Promise; export { executeShellCommand, getErrorCount };