import { createOpenFetch } from './fetch.js'; type OpenFetchClientOptions = Parameters[0]; type OpenFetchHooks = Parameters[3]; interface OpenFetchNuxtApp { hooks: OpenFetchHooks; vueApp: { config: { globalProperties: object; }; }; } export declare function installOpenFetchClients(nuxtApp: OpenFetchNuxtApp, clients: Record, localFetch: typeof globalThis.$fetch): void; export {};