import { AuthHttp } from 'angular2-jwt';
import { Http } from '@angular/http';
import { Storage } from '@ionic/storage';
import { ProviderProperties } from './provider-properties';
export declare class ProviderDefaults {
    private _storage;
    private _http;
    private _authHttp;
    private _providerProperties;
    constructor(_storage: Storage, _http: Http, _authHttp: AuthHttp, _providerProperties: ProviderProperties);
    readonly http: Http | AuthHttp;
    readonly basePath: string;
    readonly providerProperties: ProviderProperties;
    readonly storage: Storage;
}
