export declare class AdminCreateUserDto {
    email: string;
    password: string;
    fullName?: string;
    name?: string;
    employeeCode: string;
    role?: string;
    mobileNumber?: string;
    mobile?: string;
    sittingLocation?: string;
    sitingLocation?: string;
    reportingManagerId?: string;
    reportingManagerUid?: string;
    deviceId?: string;
    profileImage?: string;
}
export declare class AdminUpdateUserDto {
    email?: string;
    fullName?: string;
    name?: string;
    employeeCode?: string;
    role?: string;
    mobileNumber?: string;
    mobile?: string;
    sittingLocation?: string;
    sitingLocation?: string;
    reportingManagerId?: string;
    reportingManagerUid?: string;
    deviceId?: string;
    profileImage?: string;
}
export declare class UpdateSelfDto {
    fullName?: string;
    employeeCode?: string;
    fcmToken?: string;
}
