import type { RuleEditRequest } from '../../../../types/eslintConfig'; export type EditOutcome = { message: string | null; ok: boolean; }; export declare const applyRuleEdit: (configPath: string, request: RuleEditRequest) => EditOutcome;