import { ChangeDetectorRef } from '@angular/core';
import { PasswordType } from '../../types/types';
import * as i0 from "@angular/core";
export declare class PasswordStrengthComponent {
    protected change: ChangeDetectorRef;
    password: string;
    readonly height = 1;
    readonly weryWeak: number;
    readonly weak: number;
    readonly strong: number;
    readonly weryStrong: number;
    translations: {
        weryWeak: string;
        weak: string;
        strong: string;
        weryStrong: string;
    };
    id: string;
    strengthType: PasswordType;
    constructor(change: ChangeDetectorRef);
    getK(): number;
    getStrength(): number;
    static ɵfac: i0.ɵɵFactoryDeclaration<PasswordStrengthComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<PasswordStrengthComponent, "obl-password-strength", never, { "password": { "alias": "password"; "required": false; }; }, {}, never, never, false, never>;
}
