import { BuiltinRule, ResolvedOptions, RuleFunction } from './types'; export declare const builtinRules: Record; export declare function getBuiltinRule(name: string): RuleFunction | undefined; export declare function executeRules(options: ResolvedOptions, word: string, errors: string[]): number; export declare function getVerdictAndLevel(options: ResolvedOptions, score: number | undefined): [string, number];