export interface HttpAttemptTimes {
    end: Date;
    start: Date;
}
export declare const HttpAttemptTimesSerializer: {
    _fromJsonObject(object: any): HttpAttemptTimes;
    _toJsonObject(self: HttpAttemptTimes): any;
};
