import type { FetchOptions, ResponseContext } from '../types'; import type { EndpointHandlers } from './types'; /** * Makes a custom API request to any endpoint. */ export declare function customFetch(endpointHandlers: EndpointHandlers, dynamicHandlers: Record) => Promise>>, path: string, options?: FetchOptions): Promise>;