export declare const groupPartitionsByTopic: <T extends {
    topic: string;
    partition: number;
}>(items: T[]) => {
    [topic: string]: number[];
};
