import type { HookContext } from '../types.js'; export declare function parseSessionStartStdin(raw: string): HookContext; export declare function parseStopStdin(raw: string): HookContext; export declare function parsePromptSubmitStdin(raw: string): HookContext; export declare function formatSessionStartOutput(context: string): string; export declare function formatPromptSubmitOutput(context: string): string; export declare function openStore(): import("../../v2/store-facade.js").V2Store | null; export declare function runSessionStart(): void; export declare function runPromptSubmit(): void; export declare function runStop(): Promise;