export interface SessionLastMessageArgs { transcriptPath: string; json: boolean; } export interface SessionLastMessageResult { found: boolean; text: string | null; hasPromise: boolean; promiseValue: string | null; error?: string; } export declare function handleSessionLastMessage(args: SessionLastMessageArgs): number; //# sourceMappingURL=lastMessage.d.ts.map