import { type Message, type SupportOfferResult, type SupportTicketContext, } from "../../schemas"; export type OfferSupportStrategy = { chatHistory: Message[]; environmentContext: string; shouldOfferSupport(): Promise; setContext(supportTicketContext: SupportTicketContext): boolean; };