import { UseQueryOptions } from '@tanstack/react-query'; import type { IpAllowlistConfigResponseResponse } from '../responses/IpAllowlistConfigResponseResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetIpAllowlistConfigQueryPathParams { 'ip-config-identifier': string; } export interface GetIpAllowlistConfigQueryHeaderParams { 'Harness-Account'?: string; } export type GetIpAllowlistConfigOkResponse = ResponseWithPagination; export type GetIpAllowlistConfigErrorResponse = unknown; export interface GetIpAllowlistConfigProps extends GetIpAllowlistConfigQueryPathParams, Omit, 'url'> { } export declare function getIpAllowlistConfig(props: GetIpAllowlistConfigProps): Promise; /** * Retrieves the specified IP Allowlist config */ export declare function useGetIpAllowlistConfigQuery(props: GetIpAllowlistConfigProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;