import { EntityTypes } from "./enums"; export interface LookupRequestItem { type: EntityTypes; id: string; } export interface LookupResponseItem { type: EntityTypes; id: string; name: string; }