import { JsonValue } from "vtxf-xe2/dist-node/xe2-base-utils"; export declare type TextAnalysisResultType = { type: 'm3t_json'; json: JsonValue; } | { type: 'm3to_json'; json: JsonValue; } | { type: '3dtiles_json'; json: JsonValue; } | { type: 'm3to_url'; url: string; } | { type: 'm3t_url'; url: string; }; export declare function maybeLocalFilePath(text: string): boolean; export declare function maybeUrl(text: string): boolean; export declare function isSceneObjectTypeName(text: string): boolean; export declare type AnalyzeTextContext = { type?: '拖拽过来的' | '粘贴过来的' | '命令行参数'; }; export declare function analyzeText(text: string, context?: AnalyzeTextContext): Promise;