import type { Application } from '../../../declarations'; import { BlogPostsService } from './posts.class'; import { blogPostsPath } from './posts.shared'; export * from './posts.class'; export * from './posts.schema'; export declare const blogPosts: (app: Application) => void; declare module '../../../declarations' { interface ServiceTypes { [blogPostsPath]: BlogPostsService; } }