import type { RuleModule } from '../../types'; /** * SC2069: Detect broken redirect ordering. * `cmd 2>&1 > file` redirects stderr to original stdout (terminal), not the file. * Correct: `cmd > file 2>&1` or `cmd &> file` (bash). */ export declare const noBrokenRedirectRule: RuleModule;