import type { ENV } from 'types'; export interface City { id: string; name: string; isActive: boolean; ownerId: string; nftId: string; url: string; realmId: string; visits: number; score: number; stampsNumber: number; } export interface GetCitiesArguments { env?: ENV; cityId: string; } export interface GetCitiesResponse { getCities: { cities: City[]; total: number; }; }