import { QueryStatsResponse } from '../../../xray-protos/app/stats/command/command';
import { IInboundStat } from './interfaces';
/**
 * Model for handling and formatting inbound statistics response data
 */
export declare class GetAllInboundsStatsResponseModel {
    /** Array of inbound statistics containing inbound tag, uplink and downlink data */
    inbounds: IInboundStat[];
    /**
     * Creates an instance of GetAllInboundsStatsResponseModel
     * @param data Raw stats response data from the query
     */
    constructor(data: QueryStatsResponse);
    /**
     * Parses and formats the raw stats data into inbound-specific statistics
     * @param data Raw stats response data containing individual stat entries
     * @returns Array of formatted inbound statistics
     */
    private parseData;
}
//# sourceMappingURL=get-all-inbounds-stats.response.model.d.ts.map