import { UseQueryOptions } from '@tanstack/react-query'; import type { IpAllowlistValidateUniqueIdentifierResponseResponse } from '../responses/IpAllowlistValidateUniqueIdentifierResponseResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface ValidateUniqueIpAllowlistConfigIdentifierQueryPathParams { 'ip-config-identifier': string; } export interface ValidateUniqueIpAllowlistConfigIdentifierQueryHeaderParams { 'Harness-Account'?: string; } export type ValidateUniqueIpAllowlistConfigIdentifierOkResponse = ResponseWithPagination; export type ValidateUniqueIpAllowlistConfigIdentifierErrorResponse = unknown; export interface ValidateUniqueIpAllowlistConfigIdentifierProps extends ValidateUniqueIpAllowlistConfigIdentifierQueryPathParams, Omit, 'url'> { } export declare function validateUniqueIpAllowlistConfigIdentifier(props: ValidateUniqueIpAllowlistConfigIdentifierProps): Promise; /** * Checks whether the IP Allowlist config identifier is unique or not */ export declare function useValidateUniqueIpAllowlistConfigIdentifierQuery(props: ValidateUniqueIpAllowlistConfigIdentifierProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;