import type { Application } from '../../../declarations'; import { BlogSuggestionsService } from './suggestions.class'; import { blogSuggestionsPath } from './suggestions.shared'; export * from './suggestions.class'; export * from './suggestions.schema'; export declare const blogSuggestions: (app: Application) => void; declare module '../../../declarations' { interface ServiceTypes { [blogSuggestionsPath]: BlogSuggestionsService; } }