import { Relation } from 'typeorm'; import { PlaceType } from './placeType'; export declare class PlaceCategory { id: number; name: string; placeTypes: Relation[]; }