/** * @internal * * Makes an API request to the General Translation API. * * Encapsulates URL construction, headers, and JSON parsing. */ export default function apiRequest(baseUrl: string, endpoint: string, options?: { body?: unknown; method?: 'GET' | 'POST' | 'DELETE'; }): Promise;