type ObjectTypeId = 16 | 32 | 64;
export type Item = {
    Id: ObjectTypeId;
    Name: string;
    ObjectTypeId: number;
};
export type Response = Item[];
export {};
