/** * Refresh Feature Flag Cache Service * Forces a refresh of the feature flag cache */ import type { ServiceOptions, RefreshCacheResponse } from '@plyaz/types/api'; import type { EndpointsList } from '@/api/endpoints'; import type { FetchResponse } from 'fetchff'; /** * Force refresh of the feature flag cache * Uses endpoint: POST /feature-flags/refresh * * @param options - Optional service options * @returns Promise * * @example * ```typescript * // Force refresh after flag updates * await refreshFeatureFlagCache(); * ``` */ export declare function refreshFeatureFlagCache(options?: ServiceOptions): Promise>; //# sourceMappingURL=refreshFeatureFlagCache.d.ts.map