import { HttpResponse } from '@angular/common/http';
/**
 * Constrains the http response to not have the body defined as `T | null`, but `T` only.
 */
export declare type StrictHttpResponse<T> = HttpResponse<T> & {
    readonly body: T;
};
