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 GetOrgScopedInfrastructureQueryPathParams { org: string; environment: string; 'infrastructure-definition': string; } export interface GetOrgScopedInfrastructureQueryHeaderParams { 'Harness-Account'?: string; } export type GetOrgScopedInfrastructureOkResponse = ResponseWithPagination; export type GetOrgScopedInfrastructureErrorResponse = unknown; export interface GetOrgScopedInfrastructureProps extends GetOrgScopedInfrastructureQueryPathParams, Omit, 'url'> { } export declare function getOrgScopedInfrastructure(props: GetOrgScopedInfrastructureProps): Promise; /** * Retrieves the specified org scoped infrastructure */ export declare function useGetOrgScopedInfrastructureQuery(props: GetOrgScopedInfrastructureProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;