export declare class UpdateUserDto {
    displayName?: string;
    role?: 'USER' | 'ADMIN';
    isActive?: boolean;
    password?: string;
}
