export type FetchOptions = Omit & { headers?: RequestInit["headers"] | (() => Headers); isClient?: boolean; }; export declare function appComponentFetch({ component, path, token, allowDefaultNextJsCache, customFetcher, ...rest }: { component: string; token?: string; path: string; allowDefaultNextJsCache?: boolean; customFetcher?: { fetch: typeof fetch; }; } & FetchOptions): Promise; //# sourceMappingURL=app-component-fetch.d.ts.map