import { IDRTopicInfo } from "./IDRTopicInfo"; export declare class IDROffsetInspector { getAllOffsetsForTopic( replicationSet?: string, topic?: string, topicType?: string ): IDRTopicInfo; static getHermesOffsetInspector(): IDROffsetInspector; static getLocalOffsetInspector(): IDROffsetInspector; getOffsetsInfoForDelta(): IDRTopicInfo[]; getOffsetsInfoForMetadata(): IDRTopicInfo[]; getPartitionOffsetsForTopic( replicationSet?: string, topicType?: string, topic?: string, owner?: string ): IDRTopicInfo; static getRemoteOffsetInspector(bootstrap?: string): IDROffsetInspector; constructor(); }