export * from '@agent-tars/interface'; /** * API response structure for errors */ export interface ErrorResponse { error: string; message?: string; code?: string; details?: Record; } /** * API response structure for success with data */ export interface SuccessResponse { success: true; data: T; } /** * Session status response */ export interface SessionStatusResponse { sessionId: string; status: { isProcessing: boolean; state: string; }; } /** * Browser control information response */ export interface BrowserControlInfoResponse { mode: string; tools: string[]; } /** * Share configuration response */ export interface ShareConfigResponse { hasShareProvider: boolean; shareProvider: string | null; } /** * Share result response */ export interface ShareResultResponse { success: boolean; url?: string; html?: string; sessionId?: string; error?: string; } //# sourceMappingURL=types.d.ts.map