/**
 * Hook System
 *
 * Exports the complete hook system: types, registry, and executor.
 * Provides lifecycle hooks for CLI command execution.
 *
 * @implements @.aiwg/requirements/use-cases/UC-004-extension-system.md
 * @architecture @src/extensions/types.ts
 * @issue #58
 */
export type { HookEvent, HookContext, HookResult, HookFilter, HookHandler, HookExecutionResult, } from './types.js';
export { HookRegistry } from './registry.js';
export { HookExecutor } from './executor.js';
//# sourceMappingURL=index.d.ts.map