export interface CaptureEntry { sessionId: string; toolUseId: string; filePath: string; mtimeMs: number; sizeBytes: number; preview: string; } export interface ListCapturesOptions { sessionId?: string; limit?: number; } export declare const CAPTURE_FILENAME_RE: RegExp; export declare function listCaptures(options?: ListCapturesOptions): Promise;