/** Optional configuration for an API call, including headers, query, and path parameters. */
export interface ApiOptions {
    /** Headers to include in the API request. */
    headers?: Record<string, string | number | boolean>;
    /** Query parameters to append to the API URL. */
    queryParams?: Record<string, string | number | boolean>;
    /** Path parameters to substitute in the API URL. */
    pathParams?: Record<string, string | number | boolean>;
}
