import { SchemaNodeData } from '../../types/schema'; /** * Converts `.proto` source text into a JSON-Schema-shaped object. Throws on * unparsable source, unresolvable (non-bundled) imports, or ambiguous root * messages — callers are expected to fail soft. */ export declare function protoToJsonSchema(rawSchema: string): SchemaNodeData;