import type { Application } from '../../../declarations'; import { BlogActionsService } from './actions.class'; import { blogActionsPath } from './actions.shared'; export * from './actions.class'; export declare const blogActions: (app: Application) => void; declare module '../../../declarations' { interface ServiceTypes { [blogActionsPath]: BlogActionsService; } }