import type { RuleModule } from '../../types'; /** * Enforce consistent placement of case statement terminators (;;). * Each case branch must end with ;; before the next pattern or the closing * `esac`. The rule walks the case body honoring nested block structure so * `)` characters inside `for ... done`, `while ... done`, `if ... fi`, and * `$(...)` subshells are not mistaken for the next case pattern. */ export declare const consistentCaseTerminatorsRule: RuleModule;