import { City } from "./City"; import { Local } from "./Local"; import { User } from "./User"; export declare class Square { id: number; name: string; city: City; address: string; latitude: number; longitude: number; details: any | null; maximum_number_locals: number; email: string | null; phone: string | null; status: number; locals: Local[]; users_favorite_square: User[]; }