import type { RuleModule } from '../../types'; /** * Disallow multiple consecutive spaces in code (except for indentation). * This rule helps maintain code readability by preventing excessive spacing. * * Violations: * - `const x = 1` (multiple spaces before =) * - `foo(a, b)` (multiple spaces after comma) */ export declare const noMultiSpaces: RuleModule;