import * as t from './types'; export declare function isOK(status?: number | string): boolean; export declare function isObservable(input?: any): boolean; export declare function fromHttpResponse(res: t.HttpResponse): { toClientResponse(options?: { bodyType?: t.HttpClientBodyType | undefined; }): t.IHttpClientResponse; }; export declare function toClientResponse(status: number, body: T, options?: { bodyType?: t.HttpClientBodyType; error?: t.IHttpError; }): t.IHttpClientResponse; export declare function toError(status: number, type: t.HttpError | t.FsHttpError, message: string, body?: T): t.IHttpClientResponse; export declare function isError(data?: any): any;