import { Gender, RoleIds } from '../entities/user.entity';
export declare class UpdateUserDto {
    id: string;
    customerId?: number;
    name?: string;
    surName: string;
    nationalCode?: string;
    gender: Gender;
    birthday?: string;
    email?: string;
    password?: string;
    phone?: string;
    mobile: string;
    isActive: boolean;
    roleId: RoleIds;
}
