import { Transport } from '@nestjs/microservices'; export declare class KafkaService { static getOptions(groupId: string, broker: string): { transport: Transport; options: { client: { brokers: string[]; }; consumer: { groupId: string; }; }; }; }