import { AjaxAdapter, AjaxRequestInterceptor, BreezeConfig } from 'breeze-client';
export declare class AjaxAngularjsAdapter implements AjaxAdapter {
    name: string;
    defaultSettings: {
        headers?: {
            [name: string]: string;
        };
    };
    requestInterceptor?: AjaxRequestInterceptor;
    $http: any;
    $rootScope: any;
    constructor();
    static register(breezeConfig?: BreezeConfig): AjaxAngularjsAdapter;
    initialize(): void;
    setHttp(http: any): void;
    ajax(config: any): void;
}
