/** * MCP Apps configuration constants */ export declare const MCP_APPS_CONFIG: { /** * API endpoints for widget operations */ readonly API_ENDPOINTS: { readonly WIDGET_STORE: "/inspector/api/mcp-apps/widget/store"; readonly WIDGET_CONTENT: (toolCallId: string) => string; }; /** * Protocol version for MCP Apps bridge */ readonly VERSION: "0.16.2"; /** * Timeout values (in milliseconds) */ readonly TIMEOUTS: { /** Tool call timeout - 10 minutes */ readonly TOOL_CALL: 600000; /** Animation duration for size changes */ readonly ANIMATION: 300; }; /** * Default dimensions for widget display */ readonly DIMENSIONS: { /** Picture-in-picture width */ readonly PIP_WIDTH: 768; /** Picture-in-picture max width (cap so widget can expand up to this) */ readonly PIP_MAX_WIDTH: 700; /** Picture-in-picture height */ readonly PIP_HEIGHT: 400; /** Default iframe height for inline mode */ readonly DEFAULT_HEIGHT: 400; }; }; //# sourceMappingURL=mcp-apps.d.ts.map