import { ProviderSessions } from '../base/ProviderSessions'; import type { SessionRecord, TranscriptMsg } from '../base/types'; export declare class GrokProviderSessions extends ProviderSessions { readonly family = "grok"; list(root: string): SessionRecord[]; listAll(): SessionRecord[]; resolveLatest(root: string): Promise; readTranscript(id: string, opts?: { cwd?: string; limit?: number; }): TranscriptMsg[]; }