import type { TSESTree } from '@typescript-eslint/typescript-estree'; type Node = TSESTree.Node; type Literal = TSESTree.Literal; type LiteralValue = string | number | boolean | RegExp | null; export declare function findLiteral(root: Node, value: LiteralValue): Literal | undefined; export {};