import { UseMutationOptions } from '@tanstack/react-query'; import type { ErrorV3 } from '../schemas/ErrorV3'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface DeleteFirewallExceptionV3MutationPathParams { id: string; } export interface DeleteFirewallExceptionV3MutationQueryParams { account_identifier: string; } export type DeleteFirewallExceptionV3OkResponse = ResponseWithPagination; export type DeleteFirewallExceptionV3ErrorResponse = ErrorV3; export interface DeleteFirewallExceptionV3Props extends DeleteFirewallExceptionV3MutationPathParams, Omit, 'url'> { queryParams: DeleteFirewallExceptionV3MutationQueryParams; } export declare function deleteFirewallExceptionV3(props: DeleteFirewallExceptionV3Props): Promise; /** * Delete a firewall exception by ID */ export declare function useDeleteFirewallExceptionV3Mutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;