import { InjectionToken } from '@angular/core';
import { AuthenticationOptions } from 'azure-maps-control';
import { IRetryOptions } from 'azure-maps-rest';
export declare const AZUREMAPS_CONFIG: InjectionToken<unknown>;
/**
 * Configuration of the Azure Maps
 */
export declare class AzureMapsConfiguration {
    authOptions: AuthenticationOptions;
    pipelineRetryOptions?: IRetryOptions;
    domain?: string;
}
