import { OnModuleInit } from '@nestjs/common'; import { AuthGrpcService } from './services/auth/auth.grpc.service'; import { ThingGrpcService } from './services/thing/thing.grpc.service'; export declare class ToolsModule implements OnModuleInit { private readonly thingGrpcService; private readonly authGrpcService; constructor(thingGrpcService: ThingGrpcService, authGrpcService: AuthGrpcService); onModuleInit(): void; }