declare enum AccountType {
    ADMIN = "ADMIN",
    SUB_ADMIN = "SUB_ADMIN"
}
export declare class UpdateSubAdminDto {
    userName: string;
    firstName: string;
    lastName: string;
    accountType: AccountType;
    email: string;
    mobileCode: string;
    mobile: string;
    password?: string;
    roleIds: string;
}
export {};
