export interface GorgiasChat { readonly isOpen: () => boolean; readonly open: () => void; readonly close: () => void; readonly on: (event: string, handler: () => void) => void; readonly off: (event: string, handler: () => void) => void; readonly captureUserEmail: (email: string) => void; readonly setShopifyContext: (shopifyDomain: string, userEmail?: string, customerId?: number) => void; readonly captureShopifyCart: (cart: unknown) => void; } export declare const getGorgiasChat: () => GorgiasChat;