import { InjectionToken } from '@angular/core';
export interface ProgressHttpConfig {
    id: string;
    silentApis: string[];
    matcher: string | undefined;
}
export declare type NgProgressHttpConfig = Partial<ProgressHttpConfig>;
export declare const NG_PROGRESS_HTTP_CONFIG: InjectionToken<Partial<ProgressHttpConfig>>;
