import type { Params } from '@feathersjs/feathers'; import type { MongoDBAdapterOptions, MongoDBAdapterParams } from '@feathersjs/mongodb'; import { MongoDBService } from '@feathersjs/mongodb'; import type { Application } from '../../../declarations'; import type { EventsTriggers, EventsTriggersData, EventsTriggersPatch, EventsTriggersQuery } from './triggers.schema'; export type { EventsTriggers, EventsTriggersData, EventsTriggersPatch, EventsTriggersQuery }; export interface EventsTriggersParams extends MongoDBAdapterParams { user?: any; } export declare class EventsTriggersService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;