export interface ChatWidgetProps {
    agentConfigEndpoint?: string;
    chatEndpoint?: string;
    buttonColor?: string;
    position?: "bottom-right" | "bottom-left";
    generateFallbackResponse?: (input: string) => string;
}
export declare function ChatWidget({ agentConfigEndpoint, chatEndpoint, buttonColor, position, generateFallbackResponse, }: ChatWidgetProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=chat-widget.d.ts.map