import { Hook } from "@oclif/core"; /** * This hook intercepts command execution and redirects singular command forms to their plural equivalents * This allows commands like 'ably account list' to work as an alias for 'ably accounts list' * without requiring separate alias files for each command */ declare const hook: Hook<"init">; export default hook;