export interface UseChatOptions { /** * Gorgias chat app id */ readonly chatAppId: string; /** * Gorgias chat base URL */ readonly chatBaseURL: string; /** * Gorgias API base URL */ readonly apiBaseURL: string; } export declare type ChatStatus = 'loading' | 'ready'; /** * Install Gorgias Chat widget. */ export declare const useChat: (options: UseChatOptions) => ChatStatus;