import { Entity } from '@backstage/catalog-model'; export declare const kafkaApiRef: import("@backstage/core-plugin-api").ApiRef; export declare const kafkaDashboardApiRef: import("@backstage/core-plugin-api").ApiRef; export type ConsumerGroupOffsetsResponse = { consumerId: string; offsets: { topic: string; partitionId: number; topicOffset: string; groupOffset: string; }[]; }; export interface KafkaApi { getConsumerGroupOffsets(clusterId: string, consumerGroup: string): Promise; } export interface KafkaDashboardApi { getDashboardUrl(clusterId: string, consumerGroup: string, entity: Entity): { url?: string; }; }