import type { RuleModule } from '../../types'; /** * SC2292: Prefer [[ ]] over [ ] for tests in bash/zsh. * [[ ]] is safer: no word splitting, no pathname expansion, supports && || and regex. */ export declare const preferDoubleBracketsRule: RuleModule;