import { AbstractParent } from '../../../common/configurer/AbstractParent'; import { StandardUserWorkflowConfigurer, LostPasswordConfigurer, Configurer, ResetPasswordConfigurer } from '../../../common/configurer'; import { Provider, ConfigurationProperties, ZetaPushContext } from '@zetapush/core'; export declare class LostPasswordConfigurerImpl extends AbstractParent implements LostPasswordConfigurer, Configurer { private properties; private zetapushContext; private resetPasswordConfigurer?; constructor(parent: StandardUserWorkflowConfigurer, properties: ConfigurationProperties, zetapushContext: ZetaPushContext); reset(): ResetPasswordConfigurer; getProviders(): Promise; }