import type { Plugin } from "../types"; declare const createFetch: ({ client: baseClient, plugins, }: { client?: typeof fetch | undefined; plugins?: Plugin[] | undefined; }) => typeof fetch; export default createFetch;