import { UseMutationOptions } from '@tanstack/react-query'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface DeleteIpAllowlistConfigMutationPathParams { 'ip-config-identifier': string; } export interface DeleteIpAllowlistConfigMutationHeaderParams { 'Harness-Account'?: string; } export type DeleteIpAllowlistConfigOkResponse = ResponseWithPagination; export type DeleteIpAllowlistConfigErrorResponse = unknown; export interface DeleteIpAllowlistConfigProps extends DeleteIpAllowlistConfigMutationPathParams, Omit, 'url'> { } export declare function deleteIpAllowlistConfig(props: DeleteIpAllowlistConfigProps): Promise; /** * Deletes the specified IP Allowlist config */ export declare function useDeleteIpAllowlistConfigMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;