import { UseQueryOptions } from '@tanstack/react-query'; import type { InfrastructureResponseResponse } from '../responses/InfrastructureResponseResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetAccountScopedInfrastructureQueryPathParams { environment: string; 'infrastructure-definition': string; } export interface GetAccountScopedInfrastructureQueryHeaderParams { 'Harness-Account'?: string; } export type GetAccountScopedInfrastructureOkResponse = ResponseWithPagination; export type GetAccountScopedInfrastructureErrorResponse = unknown; export interface GetAccountScopedInfrastructureProps extends GetAccountScopedInfrastructureQueryPathParams, Omit, 'url'> { } export declare function getAccountScopedInfrastructure(props: GetAccountScopedInfrastructureProps): Promise; /** * Retrieves the specified account scoped infrastructure */ export declare function useGetAccountScopedInfrastructureQuery(props: GetAccountScopedInfrastructureProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;