import { AvatarId, FavoriteId, UserId, WorldId } from './common'; export declare type ObjectId = UserId | AvatarId | WorldId; export declare type TypeOptions = 'friend' | 'world' | 'avatar'; export interface FavoriteResponse { id: FavoriteId; type: TypeOptions; favoriteId: ObjectId; tags: Array; }