import { BaseEntity } from '../../../../entities/core-entities/index.js';
/**
 * StatusResponseBody class is responsible for
 * deserializing the response from the distribution
 * API to a status response body.
 */
export declare class StatusResponseBody implements BaseEntity {
    [key: string]: unknown;
    isDistributionOn: boolean;
    consumers: string[];
    numberMessagesInQueue: number;
    messagesPerSecond: number;
}
