import { UseQueryOptions } from '@tanstack/react-query'; import type { ListFirewallExceptionVersionsResponseV3Response } from '../responses/ListFirewallExceptionVersionsResponseV3Response'; import type { ErrorV3 } from '../schemas/ErrorV3'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface ListFirewallExceptionVersionsV3QueryQueryParams { account_identifier: string; registry_id?: string; package_name?: string; /** * @format int64 * @default 0 */ page?: number; /** * @format int64 * @default 20 */ size?: number; } export type ListFirewallExceptionVersionsV3OkResponse = ResponseWithPagination; export type ListFirewallExceptionVersionsV3ErrorResponse = ErrorV3; export interface ListFirewallExceptionVersionsV3Props extends Omit, 'url'> { queryParams: ListFirewallExceptionVersionsV3QueryQueryParams; } export declare function listFirewallExceptionVersionsV3(props: ListFirewallExceptionVersionsV3Props): Promise; /** * List versions for a specific package in a registry, for use when creating firewall exceptions */ export declare function useListFirewallExceptionVersionsV3Query(props: ListFirewallExceptionVersionsV3Props, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;