import { CatEntity } from './cat.entity'; import { CatHomePillowEntity } from './cat-home-pillow.entity'; export declare class CatHomeEntity { id: number; name: string; cat: CatEntity; pillows: CatHomePillowEntity[]; createdAt: string; countCat: number; }