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 { BlogSuggestions, BlogSuggestionsData, BlogSuggestionsPatch, BlogSuggestionsQuery } from './suggestions.schema'; export type { BlogSuggestions, BlogSuggestionsData, BlogSuggestionsPatch, BlogSuggestionsQuery }; export interface BlogSuggestionsParams extends MongoDBAdapterParams { } export declare class BlogSuggestionsService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;