import type { BackendService } from './types'; export interface IBackendEndpoints { getBaseUrl(service?: BackendService): string; auth(endpoint: string, queryString: string): string; agents(endpoint?: string): string; events(endpoint?: string): string; llm(endpoint?: string): string; embeddings(baseUrlOverride?: string): string; models(endpoint?: string): string; telemetry(endpoint?: string): string; }