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 { BlogCalendar, BlogCalendarData, BlogCalendarPatch, BlogCalendarQuery } from './calendar.schema'; export type { BlogCalendar, BlogCalendarData, BlogCalendarPatch, BlogCalendarQuery }; export interface BlogCalendarParams extends MongoDBAdapterParams { } export declare class BlogCalendarService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;