import { InputBCFView } from '@xtctwins/tctwins-bimx-viewer/types/src/toolbar/BCFTool'; export type userInfo = { avatar: string; createTime: string; updateTime: any; email: string; inviteId: number; inviteUserName: string; mobile: string; role: number; status: number; userId: number; userName: string; self: boolean; }; export type BcfContent = { userId: number; bcfList: BcfTopicTotal[]; staffList: userInfo[]; }; export type InputComment = { guid?: string; date: string; userId?: number; author: string | number; comment: string; snapshotList?: any[]; modified_author?: string; modified_date?: string; viewPoint?: string; }; export type BcfTopicTotal = { _id: number; fileId: number; userId: number; guid?: string; title: string; author: number | string; createDate: string; index: number; priority?: string; type?: string; stage?: string; status?: string; labels?: string[] | undefined; dueDate?: string; assignedTo?: string | number; description?: string; viewPoints?: InputBCFView[]; comments?: InputComment[]; server_assigned_id?: string; reference_links?: string[] | undefined; modified_date?: string; modified_author?: string; related_topics?: string[] | undefined; }; export type BcfTopic = { guid?: string; title: string; author: number | string; createDate: string; index?: number; priority?: string; type?: string; stage?: string; status?: string; labels?: string[] | undefined; dueDate?: string; assignedTo?: string | number; description?: string; viewPoints?: InputBCFView[]; comments?: InputComment[]; server_assigned_id?: string; reference_links?: string[] | undefined; modified_date?: string; modified_author?: string; related_topics?: string[] | undefined; }; export declare const getPriority: (priority: string) => string; export declare const getPriorityCh: (priority: string) => any; export declare const getPriorityColor: (priority: string) => "#F54D4D" | "#86B6FF" | "#D5D5D5"; export declare const getPriorityColorMobile: (priority: string) => "#F54D4D" | "#86B6FF" | "#333333"; export declare const getPriorityTextColor: (priority: string) => "#F54D4D" | "#86B6FF" | "#262626"; export declare const getStageColor: (stage: string) => "#F54D4D" | "#00AF50" | "#959595"; export declare const BCFTYPE: () => any[]; export declare const BCFPRIORITY: () => any[]; export declare const BCFSTATUS: () => any[]; export declare const BCFSTAGE: () => any[]; export declare const BCFTAG: () => any[];