import type { Params, ServiceInterface } from '@feathersjs/feathers'; import type { Application } from '../../../declarations'; export interface BlogAction { action: string; status: string; triggeredAt: string; durationMs?: number; error?: string; } export type BlogActionData = { action: string; entryId?: string; slotIndex?: number; }; export type BlogActionPatch = any; export type BlogActionQuery = any; export interface BlogActionsServiceOptions { app: Application; } export interface BlogActionsParams extends Params { } export declare class BlogActionsService implements ServiceInterface { options: BlogActionsServiceOptions; constructor(options: BlogActionsServiceOptions); create(data: BlogActionData, _params?: ServiceParams): Promise; } export declare const getOptions: (app: Application) => { app: Application; };