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 { BlogPosts, BlogPostsData, BlogPostsPatch, BlogPostsQuery } from './posts.schema'; export type { BlogPosts, BlogPostsData, BlogPostsPatch, BlogPostsQuery }; export interface BlogPostsParams extends MongoDBAdapterParams { } export declare class BlogPostsService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;