/** * Makes an authenticated API request to the MoltFlow API. * * @param endpoint - API endpoint path (without base URL) * @param method - HTTP method * @param data - Request body data * @param params - Query parameters * @returns Promise with parsed response data * @throws Error if MOLTFLOW_API_KEY is not set * @throws AxiosError for network/API errors */ export declare function makeApiRequest(endpoint: string, method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH", data?: any, params?: any): Promise; //# sourceMappingURL=api-client.d.ts.map