import { type ClientSurface } from "./client-surface.js"; export interface FeedbackClientContext { chatSessionIds: string[]; activeRunId?: string; pageUrl?: string; /** Runtime shell the feedback was sent from: web, electron, or tauri. */ clientSurface?: ClientSurface; } export interface FeedbackClientContextOptions { chatSessionId?: string | null; storageKey?: string | null; } export declare function getFeedbackClientContext(options?: FeedbackClientContextOptions): FeedbackClientContext; //# sourceMappingURL=feedback-context.d.ts.map