import { ServiceCollection } from "./serviceCollection"; /** * Command action handler */ export declare type ActionHandler = ( /** * Collection of services */ serviceCollection: ServiceCollection, /** * Command options */ options: T) => void | Promise;