import { CoreDecorator } from '@hapiness/core'; import { ConnectionOptions } from './services'; export interface MongoModel { adapter: string; collection: string; collectionName?: string; options?: any; } export declare const MongoModel: CoreDecorator; export declare abstract class Model { connectionOptions: ConnectionOptions; abstract readonly schema: any; constructor(token: any); }