import type { TSESTree } from '@typescript-eslint/typescript-estree'; type NodeWithLocation = TSESTree.Node & { range?: TSESTree.Range; loc?: TSESTree.SourceLocation; }; export declare function extractSource(source: string, node: NodeWithLocation): string; export {};