import type { RuleModule } from '../../types'; /** * Disallow trailing whitespace at the end of lines. * Helps keep code clean and avoid unnecessary diffs. * * Violations: * - Lines ending with spaces or tabs */ export declare const noTrailingSpaces: RuleModule;