export interface ServerReference { $$typeof: symbol; $$id: string; } export type ServerFunction = ServerReference & ((...args: unknown[]) => Promise); /** * Check if the function is a use cache function. * * @param value - The function to check. * @returns true if the function is a use cache function, false otherwise. */ export declare function isUseCacheFunction(value: T & Partial): value is T & ServerFunction; //# sourceMappingURL=isUseCacheFunction.d.ts.map