import type { MalloyTranslation } from '../parse-malloy'; import type { CommonTokenStream } from 'antlr4ts'; import type { DocumentRange } from '../../model/malloy_types'; import type { MalloyParseInfo } from '../malloy-parse-info'; export interface PathInfo { connectionId: string; tablePath: string; range: DocumentRange; } export declare function walkForTablePath(forParse: MalloyTranslation, tokens: CommonTokenStream, parseInfo: MalloyParseInfo): PathInfo[];