export interface HookEvent { type?: unknown; properties?: unknown; } export declare function asEvent(input: unknown): HookEvent | null; export declare function getSessionId(properties: unknown): string | null; export declare function defaultCompletionDetector(event: HookEvent, completionPromise: string): boolean;