import { Server, ServiceDefinition } from '@grpc/grpc-js'; import { SchemaRegistry } from './schemaRegistry.js'; export declare const schemaReflectionProtoPath: string; export declare class GrpcSchemaService { private readonly serviceName; private readonly version; private readonly schemaRegistry; constructor(serviceName: string, version: string, schemaRegistry: SchemaRegistry); addToServer(server: Server, service: ServiceDefinition): void; private handleGetSchemas; }