import type { RuleModule } from '../../types'; /** * Enforce proper spacing around shell keywords. * Flags: `if(`, `then;cmd`, missing space after ; in control flow, etc. * * String/quote/expansion interiors are ignored via `maskShellStrings`, so * ANSI-C escape codes such as `$'\033[0;31m'` are not misread as having a * missing space after `;`. */ export declare const keywordSpacingRule: RuleModule;