import type { WatchlistType } from "../types"; export interface BlockingResult { isBlocked: boolean; reason?: WatchlistType; watchlistEntry?: Record | null; } export interface IBlockingService { isBlocked(email: string, organizationId?: number | null): Promise; }