import { UseMutationOptions } from '@tanstack/react-query'; import type { IpAllowlistConfigResponseResponse } from '../responses/IpAllowlistConfigResponseResponse'; import type { IpAllowlistConfigRequestRequestBody } from '../requestBodies/IpAllowlistConfigRequestRequestBody'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface UpdateIpAllowlistConfigMutationPathParams { 'ip-config-identifier': string; } export interface UpdateIpAllowlistConfigMutationHeaderParams { 'Harness-Account'?: string; } export type UpdateIpAllowlistConfigRequestBody = IpAllowlistConfigRequestRequestBody; export type UpdateIpAllowlistConfigOkResponse = ResponseWithPagination; export type UpdateIpAllowlistConfigErrorResponse = unknown; export interface UpdateIpAllowlistConfigProps extends UpdateIpAllowlistConfigMutationPathParams, Omit, 'url'> { body: UpdateIpAllowlistConfigRequestBody; } export declare function updateIpAllowlistConfig(props: UpdateIpAllowlistConfigProps): Promise; /** * Updates the specified IP Allowlist config */ export declare function useUpdateIpAllowlistConfigMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;