import { UseQueryOptions } from '@tanstack/react-query'; import type { IpAllowlistConfigValidateResponseResponse } from '../responses/IpAllowlistConfigValidateResponseResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface AllowedIpAddressQueryQueryParams { ip_address: string; } export interface AllowedIpAddressQueryHeaderParams { 'Harness-Account'?: string; } export type AllowedIpAddressOkResponse = ResponseWithPagination; export type AllowedIpAddressErrorResponse = unknown; export interface AllowedIpAddressProps extends Omit, 'url'> { queryParams: AllowedIpAddressQueryQueryParams; } export declare function allowedIpAddress(props: AllowedIpAddressProps): Promise; /** * Checks whether the IP address is allowed or not. */ export declare function useAllowedIpAddressQuery(props: AllowedIpAddressProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;