import type { APIResponse } from '../types';
export declare function fetchAPI<T = any>(url: string, options?: RequestInit): Promise<T | APIResponse<T>>;
