import { HookContextData, HookManager, Middleware } from '@feathersjs/hooks'; import { Service, ServiceOptions, HookContext, FeathersService, HookMap, AroundHookFunction, HookFunction } from './declarations'; type HookStore = { around: { [method: string]: AroundHookFunction[]; }; before: { [method: string]: HookFunction[]; }; after: { [method: string]: HookFunction[]; }; error: { [method: string]: HookFunction[]; }; collected: { [method: string]: AroundHookFunction[]; }; collectedAll: { before?: AroundHookFunction[]; after?: AroundHookFunction[]; }; }; type HookEnabled = { __hooks: HookStore; }; export declare function convertHookData(input: any): { [method: string]: AroundHookFunction[] | HookFunction[]; }; export declare function collectHooks(target: HookEnabled, method: string): AroundHookFunction[]; export declare function enableHooks(object: any): (this: HookEnabled, input: HookMap) => HookEnabled; export declare function createContext(service: Service, method: string, data?: HookContextData): HookContext, any>; export declare class FeathersHookManager extends HookManager { app: A; method: string; constructor(app: A, method: string); collectMiddleware(self: any, args: any[]): Middleware[]; initializeContext(self: any, args: any[], context: HookContext): import("@feathersjs/hooks").HookContext; middleware(mw: Middleware[]): this; } export declare function hookMixin(this: A, service: FeathersService, path: string, options: ServiceOptions): FeathersService; export {};