import { OnInit } from '@angular/core';
import { ModelService } from '../services/model.service';
import { ControllerService } from '../services/controller.service';
import { FormService } from './form.service';
import { TextBoxComponent } from '../controls/text-box.componet';
import * as i0 from "@angular/core";
export declare class PasswordFormComponent implements OnInit {
    model: ModelService;
    controller: ControllerService;
    formService: FormService;
    textBox: TextBoxComponent;
    password: string;
    constructor(model: ModelService, controller: ControllerService, formService: FormService);
    ngOnInit(): void;
    changeVisibility(state: string): void;
    action(): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<PasswordFormComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<PasswordFormComponent, "sti-password-form", never, {}, {}, never, never, false, never>;
}
