import { Document, Model, Connection } from 'mongoose'; import { IFileInfo } from 'common/server'; export interface IFileInfoModel extends Document, IFileInfo { id: any; ref: any; url: any; } export type FileInfoModelType = Model; export declare const FileInfoModelFunc: (db: Connection) => FileInfoModelType; //# sourceMappingURL=file-info.d.ts.map