import ApiUser from "./api_user"; import { ApiComment } from "./api_comment"; export declare class ApiCommentThread { constructor({ id, author, viewId, comments, projectId, floorId, scanDatasetId, wbsCode, title }?: Partial); id: number; author: ApiUser; viewId: number; comments: ApiComment[]; projectId: string; floorId?: string; scanDatasetId?: string; wbsCode?: string; title?: string; }