/** * Remove Feature Flag Override Service * Removes a manual override from a feature flag */ import { type ServiceOptions, type RemoveOverrideResponse } from '@plyaz/types/api'; import type { EndpointsList } from '@/api/endpoints'; import type { FetchResponse } from 'fetchff'; /** * Remove a manual override from a feature flag * Uses endpoint: DELETE /feature-flags/:key/override * * @param key - Feature flag key * @param options - Optional service options * @returns Promise * * @example * ```typescript * // Remove override after testing * await removeFeatureFlagOverride('new-feature'); * ``` */ export declare function removeFeatureFlagOverride(key: TKey, options?: ServiceOptions): Promise>; //# sourceMappingURL=removeFeatureFlagOverride.d.ts.map