Version: 4.2.04.2.14.3.04.4.04.4.15.0.05.0.15.0.25.0.35.0.55.0.65.0.75.1.05.2.05.2.15.2.25.2.35.2.45.2.55.3.05.3.16.0.0-beta.16.0.0-beta.26.0.06.0.16.1.06.1.16.1.26.1.36.1.46.1.56.2.06.2.16.3.06.4.06.4.1-beta.06.5.07.0.0-beta.07.0.0-beta.17.0.07.0.17.0.27.1.08.0.08.1.08.1.18.2.08.2.18.3.08.3.18.3.28.4.08.5.08.5.18.6.08.7.08.7.18.7.28.7.38.8.08.9.08.9.18.10.08.10.18.10.29.0.09.0.19.0.29.1.09.1.19.1.29.2.010.0.010.0.110.0.210.0.310.0.410.1.010.2.011.0.011.1.011.1.111.1.211.2.011.2.111.3.011.3.111.3.211.3.312.0.012.0.112.1.013.0.013.0.113.1.013.2.013.2.114.0.014.1.014.1.114.1.214.1.314.1.414.2.014.2.114.2.214.2.314.2.414.3.015.0.015.1.015.2.015.2.115.2.216.0.016.0.116.0.216.1.016.1.116.2.017.0.017.0.117.0.218.0.019.0.0
import { GlobalConfig } from './toastr-config';
import { EnvironmentProviders } from '@angular/core';
export declare const DefaultGlobalConfig: GlobalConfig;
/**
* @description
* Provides the `TOAST_CONFIG` token with the given config.
*
* @param config The config to configure toastr.
* @returns The environment providers.
* @example
* ```ts
* import { provideToastr } from 'ngx-toastr';
* bootstrap(AppComponent, {
* providers: [
* provideToastr({
* timeOut: 2000,
* positionClass: 'toast-top-right',
* }),
* ],
* })
*/
export declare const provideToastr: (config?: Partial<GlobalConfig>) => EnvironmentProviders;