import { Context } from "../../types"; import { CacheEntry } from "../cache"; export declare function fetchFeatures({ apiKey, ctx, remoteEvalEnabled, organization, }: { apiKey: string; ctx: Context; remoteEvalEnabled?: boolean; organization?: string; }): Promise<{ payload: any; oldEntry: CacheEntry | undefined; }>;