import { type CaptureEvent } from "./capture-store.js"; /** Tail the input daemon's live JSONL and classify each event by source. */ export declare function collectInputEvents(): CaptureEvent[]; /** * Tail the audio daemon's live JSONL for transcripts. When muted we still * advance the offset (so we don't replay a backlog on unmute) but drop the * events so koi never hears them. */ export declare function collectAudioEvents(muted: boolean): CaptureEvent[];