import { HttpOptions, QueryParamsSupplier, ResponseObserve } from '../core';
export interface HttpPivotResponse<T> {
    get(options?: HttpOptions | QueryParamsSupplier): ResponseObserve<T>;
    put(body?: any, options?: HttpOptions | QueryParamsSupplier): ResponseObserve<T>;
    post(body?: any, options?: HttpOptions | QueryParamsSupplier): ResponseObserve<T>;
    patch(body?: any, options?: HttpOptions | QueryParamsSupplier): ResponseObserve<T>;
    delete(options?: HttpOptions | QueryParamsSupplier): ResponseObserve<T>;
}
