/** * Global babysitter hooks system. * * Reads hook configuration from: * - ~/.a5c/hooks.json (global) * - /.a5c/hooks.json (project) * - /.a5c/hooks.local.json (local overrides, gitignored) * * Merges them (project overrides global, local overrides project) * and invokes shell handlers for babysitter events. * * This replaces the per-adapter findHookDispatcherPath() approach. */ export interface BabysitterHookEntry { command: string; timeout?: number; } export interface BabysitterHooksConfig { hooks: Record; } export declare function loadBabysitterHooks(cwd?: string): BabysitterHooksConfig; export declare function invokeBabysitterHook(hookName: string, input: unknown, config?: BabysitterHooksConfig): Promise; //# sourceMappingURL=babysitterHooks.d.ts.map