import type { ParsedLine } from "../conversation-normalisers/types.js"; export interface ConversationSession { index: number; firstMessageAt: string; lastMessageAt: string; messages: ParsedLine[]; } export declare function sessionize(messages: readonly ParsedLine[], gapHours: number): ConversationSession[]; //# sourceMappingURL=sessionize.d.ts.map