/** * Delete Feature Flag Service * Deletes a feature flag */ import { type ServiceOptions, type DeleteFlagResponse } from '@plyaz/types/api'; import type { EndpointsList } from '@/api/endpoints'; import type { FetchResponse } from 'fetchff'; /** * Delete a feature flag * Uses endpoint: DELETE /feature-flags/:key * * @param key - Feature flag key to delete * @param options - Optional service options * @returns Promise * * @example * ```typescript * await deleteFeatureFlag('old-feature'); * ``` */ export declare function deleteFeatureFlag(key: TKey, options?: ServiceOptions): Promise>; //# sourceMappingURL=deleteFeatureFlag.d.ts.map