import { ESLintUtils } from '@typescript-eslint/utils'; type MatcherDef = string | { regex: { pattern: string; flags?: string; }; }; export type Option = { ignore?: string[]; ignoreFunctions?: string[]; ignoreNames?: MatcherDef[]; ignoreMethodsOnTypes?: string[]; useTsTypes?: boolean; }; export declare const name = "no-unlocalized-strings"; export declare const rule: ESLintUtils.RuleModule & { name: string; }; export {};