/** * @author songxiwen * @date 2020/08/12 20:36 */ import { Document } from 'mongoose'; export declare class ProjectAuth extends Document { projectId?: string; userId?: string; role?: string; } export declare const projectAuthSchema: import("mongoose").Schema;