import CloudRegion from './CloudRegion';
import EgressCategory from './EgressCategory';
import OutputType from './OutputType';
/**
 * @export
 * @class EgressInformation
 */
export declare class EgressInformation {
    /**
     * @type {EgressCategory}
     * @memberof EgressInformation
     */
    category?: EgressCategory;
    /**
     * The number of bytes that have been transferred to the output (required)
     * @type {number}
     * @memberof EgressInformation
     */
    bytes?: number;
    /**
     * @type {OutputType}
     * @memberof EgressInformation
     */
    outputType?: OutputType;
    /**
     * @type {CloudRegion}
     * @memberof EgressInformation
     */
    outputRegion?: CloudRegion;
    constructor(obj?: Partial<EgressInformation>);
}
export default EgressInformation;
