import type { AiAgent } from '@base/api';
/**
 * Generates an embed script URL for a chat widget
 *
 * @param agent - The agent object containing id and publicToken
 * @param colorOverrides - Optional color overrides for the chat widget
 * @returns The generated script tag as a string
 */
export declare const generateEmbedScriptUrl: (agent: AiAgent, colorOverrides?: {
    "primary-color"?: string;
}) => string;
