import type { RuleModule } from '../../types'; /** * SC2006: Use $(...) notation instead of legacy backtick `...` command substitution. * Backticks are harder to nest and read. $() is the modern POSIX-compliant alternative. */ export declare const commandSubstitutionRule: RuleModule;