/**
 * @swagger
 * definitions:
 *   PasswordValidationModel:
 *     type: object
 *     properties:
 *       isValid:
 *         type: boolean
 *       errors:
 *         type: array
 *         items:
 *          type: string
 */
export declare class PasswordValidationModel {
    isValid: boolean;
    errors: string[];
    constructor(isValid?: boolean, errors?: string[]);
}
