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