import { UseQueryOptions } from '@tanstack/react-query'; import type { IpAllowlistConfigListResponseResponse } from '../responses/IpAllowlistConfigListResponseResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetIpAllowlistConfigsQueryQueryParams { search_term?: string; /** * @default 0 */ page?: number; /** * @default 20 */ limit?: number; sort?: 'created' | 'identifier' | 'name' | 'updated'; order?: 'ASC' | 'DESC'; allowed_source_type?: string; } export interface GetIpAllowlistConfigsQueryHeaderParams { 'Harness-Account'?: string; } export type GetIpAllowlistConfigsOkResponse = ResponseWithPagination; export type GetIpAllowlistConfigsErrorResponse = unknown; export interface GetIpAllowlistConfigsProps extends Omit, 'url'> { queryParams: GetIpAllowlistConfigsQueryQueryParams; } export declare function getIpAllowlistConfigs(props: GetIpAllowlistConfigsProps): Promise; /** * Retrieves the information of the IP Allowlist Config */ export declare function useGetIpAllowlistConfigsQuery(props: GetIpAllowlistConfigsProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;