/** * Fetch Feature Flag Health Service * Gets the health status of the feature flag service */ import type { ServiceOptions, FeatureFlagHealthResponse } from '@plyaz/types/api'; import type { EndpointsList } from '@/api/endpoints'; import type { FetchResponse } from 'fetchff'; /** * Get feature flag service health status * Uses endpoint: GET /feature-flags/health * * @param options - Optional service options * @returns Promise * * @example * ```typescript * const health = await fetchFeatureFlagHealth(); * if (health.data.isInitialized) { * console.log('Feature flag service ready'); * } * ``` */ export declare function fetchFeatureFlagHealth(options?: ServiceOptions): Promise>; //# sourceMappingURL=fetchFeatureFlagHealth.d.ts.map