/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { MessageBus } from '../confirmation-bus/message-bus.js'; import { type SessionStartSource, type SessionEndReason, type PreCompressTrigger, type DefaultHookOutput } from '../hooks/types.js'; /** * Fires the SessionStart hook. * * @param messageBus The message bus to use for hook communication * @param source The source/trigger of the session start * @returns The output from the SessionStart hook, or undefined if failed/no output */ export declare function fireSessionStartHook(messageBus: MessageBus, source: SessionStartSource): Promise; /** * Fires the SessionEnd hook. * * @param messageBus The message bus to use for hook communication * @param reason The reason for the session end */ export declare function fireSessionEndHook(messageBus: MessageBus, reason: SessionEndReason): Promise; /** * Fires the PreCompress hook. * * @param messageBus The message bus to use for hook communication * @param trigger The trigger type (manual or auto) */ export declare function firePreCompressHook(messageBus: MessageBus, trigger: PreCompressTrigger): Promise;