import { BindableProvider } from './bindable-provider'; import { AsyncFactory } from './binding'; import { InjectableId, Injector } from './injector'; import { State } from './state'; /** * @inheritDoc * This specialization invokes it's configured Factory asynchronously and waits until it can provide the result. */ export declare class AsyncFactoryBasedProvider extends BindableProvider> { constructor(injector: Injector, id: InjectableId, maker: AsyncFactory); /** * @inheritDoc * This specialization invokes it's configured Factory and provides the result (or invokes the error handler if necessary). */ provideAsState(): State; }