import type { TSESTree } from '@typescript-eslint/typescript-estree'; type Node = TSESTree.Node; type Literal = TSESTree.Literal; export declare function findRawLiteral(root: Node, raw: R): Literal | undefined; export {};