import type { RuleModule } from '../../types'; /** * SC2033: exit in subshell only exits the subshell, not the script. * Code like `(cd dir && exit 1)` won't stop the parent script. * Use return in functions, or restructure to avoid subshells. */ export declare const noExitInSubshellRule: RuleModule;