import { type LogService } from 'common-services';
import { type WhookCommandHandler } from '../types/commands.js';
export type WhookCommandsHandlersService = Record<string, WhookCommandHandler>;
export type WhookCommandsHandlersDependencies = {
    log?: LogService;
} & WhookCommandsHandlersService;
declare const _default: import("knifecycle").ServiceInitializer<WhookCommandsHandlersDependencies, WhookCommandsHandlersService>;
export default _default;
