import type { Account } from "@/types/models/account.type"; import type { Role } from "@/types/models/role.type"; export interface AccountService { determineAccountRole(account: Account): Promise; }