import React from 'react'; export type TopicPartitionInfo = { topic: string; partitionId: number; topicOffset: string; groupOffset: string; }; type Props = { loading: boolean; retry: () => void; clusterId: string; dashboardUrl?: string; consumerGroup: string; topics?: TopicPartitionInfo[]; }; export declare const ConsumerGroupOffsets: ({ loading, topics, clusterId, dashboardUrl, consumerGroup, retry, }: Props) => React.JSX.Element; export declare const KafkaTopicsForConsumer: () => React.JSX.Element; export {};