import { IsolationLevel } from './fetch';
type ListOffsetsRequest = {
    replicaId: number;
    isolationLevel: IsolationLevel;
    topics: {
        name: string;
        partitions: {
            partitionIndex: number;
            currentLeaderEpoch: number;
            timestamp: bigint;
        }[];
    }[];
};
type ListOffsetsResponse = {
    throttleTimeMs: number;
    topics: {
        name: string;
        partitions: {
            partitionIndex: number;
            errorCode: number;
            timestamp: bigint;
            offset: bigint;
            leaderEpoch: number;
            tags: Record<number, Buffer>;
        }[];
        tags: Record<number, Buffer>;
    }[];
    tags: Record<number, Buffer>;
};
export declare const LIST_OFFSETS: import("../utils/api").Api<ListOffsetsRequest, ListOffsetsResponse>;
export {};
