import { BaseFieldDto } from '../base-field.dto'; /** * Password input field. * * This DTO intentionally does NOT enforce password strength rules — that is * the responsibility of the consuming application. */ export declare class PasswordFieldDto extends BaseFieldDto { /** * Discriminator literal. */ type: 'PASSWORD'; /** * Value of the field. */ value?: string; /** * Minimum allowed length. */ minLength?: number; }