import { baseModel } from "src/sys/BaseModel";
export declare class place extends baseModel {
    id: number;
    code: string;
    label: any;
    description: any;
    category: number;
    SUB_category: number;
    city: number;
    latitude: string;
    longitude: string;
    codeZip: string;
    isPublic: boolean;
    number: number;
    street: string;
    phone: string;
    email: string;
    fb_Url: string;
    insta_Url: string;
    webSite_Url: string;
    scheducule: JSON;
    hashtag: JSON;
    price: number;
    confirmed: boolean;
    open: boolean;
    justification: string;
    ranking: number;
}
