import { ResolvedUserType, UserType, GuidValue } from "../../models";
export declare class UserTypeService {
    private httpClient;
    getAll: () => Promise<UserType[]>;
    inUse: (userTypeId: GuidValue) => Promise<boolean>;
    resolve: (userTypes: UserType[]) => Promise<ResolvedUserType[]>;
    addOrUpdate: (resolvedUserType: ResolvedUserType) => Promise<ResolvedUserType>;
    reorder: (userTypes: UserType[]) => Promise<UserType[]>;
    delete: (userType: UserType) => Promise<void>;
}
