import { UserType } from './user'; export declare type Comment = { id?: number; body?: string; createdAt?: string; user?: UserType; };