import { Result } from "@webiny/feature/api"; import type { Team } from "../../../types/security.js"; import { AdminUsersRepository } from "../../../features/users/shared/abstractions.js"; export interface IListUserTeamsErrors { } type ListUserTeamsError = AdminUsersRepository.Error; export interface IListUserTeams { execute(userId: string): Promise>; } /** List teams assigned to a user. */ export declare const ListUserTeamsUseCase: import("@webiny/di").Abstraction; export declare namespace ListUserTeamsUseCase { type Interface = IListUserTeams; type Error = ListUserTeamsError; } export {};