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 { AffiliatesContracts, AffiliatesContractsData, AffiliatesContractsPatch, AffiliatesContractsQuery } from './contracts.schema'; export type { AffiliatesContracts, AffiliatesContractsData, AffiliatesContractsPatch, AffiliatesContractsQuery }; export interface AffiliatesContractsParams extends MongoDBAdapterParams { } export declare class AffiliatesContractsService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;