import { UseQueryOptions } from '@tanstack/react-query'; import type { ListFirewallExceptionResponseV3Response } from '../responses/ListFirewallExceptionResponseV3Response'; import type { ErrorV3 } from '../schemas/ErrorV3'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface ListFirewallExceptionsV3QueryQueryParams { account_identifier: string; org_identifier?: string; project_identifier?: string; /** * Status of the firewall exception */ status?: 'APPROVED' | 'EXPIRED' | 'PENDING' | 'REJECTED'; package_name?: string; version?: string; package_types?: string[]; registry_ids?: string[]; exception_id?: string; search_term?: string; /** * @format int64 * @default 0 */ page?: number; /** * @format int64 * @default 20 */ size?: number; sort?: string; } export type ListFirewallExceptionsV3OkResponse = ResponseWithPagination; export type ListFirewallExceptionsV3ErrorResponse = ErrorV3; export interface ListFirewallExceptionsV3Props extends Omit, 'url'> { queryParams: ListFirewallExceptionsV3QueryQueryParams; } export declare function listFirewallExceptionsV3(props: ListFirewallExceptionsV3Props): Promise; /** * List firewall exceptions with optional filters */ export declare function useListFirewallExceptionsV3Query(props: ListFirewallExceptionsV3Props, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;