import { ParseResult } from "../parser/proto"; import { ColRow } from "../parser/recursive-descent-parser"; import { Schema, Type } from "./model"; import { Location } from "../parser/location"; export default function gotoDefinition(schema: Schema, filePath: string, colRow: ColRow): Location | undefined; export declare function isTypeSpecifier(parseResult: ParseResult, colRow: ColRow): boolean; export declare function getTypeInformation(schema: Schema, filePath: string, colRow: ColRow): string; export declare function getTypeDocs(type: Type, typePath: string): string;