import { AbstractModel } from '@zerothstack/core/common'; import { Pet } from './pet.model'; export declare class User extends AbstractModel { userId: string; username: string; birthday: Date; createdAt: Date; updatedAt: Date; pet: Pet; }