import type { FunctionContext } from './types.ts'; /** * Client-side version of functionContext that makes fetch requests to the server * Drop-in replacement for server-side functionContext */ export declare const functionContextClient: (serverUrl?: string, auth?: { username: string; password: string; }, options?: { cache?: boolean; log?: (message: string) => void; }) => FunctionContext; /** * Clear the cache directory */ export declare function clearCache(cacheDir?: string): Promise; //# sourceMappingURL=functionContextClient.d.ts.map