import { UseQueryOptions } from '@tanstack/react-query'; import type { EnvironmentResponseResponse } from '../responses/EnvironmentResponseResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetAccountScopedEnvironmentQueryPathParams { environment: string; } export interface GetAccountScopedEnvironmentQueryHeaderParams { 'Harness-Account'?: string; } export type GetAccountScopedEnvironmentOkResponse = ResponseWithPagination; export type GetAccountScopedEnvironmentErrorResponse = unknown; export interface GetAccountScopedEnvironmentProps extends GetAccountScopedEnvironmentQueryPathParams, Omit, 'url'> { } export declare function getAccountScopedEnvironment(props: GetAccountScopedEnvironmentProps): Promise; /** * Retrieves the specified account scoped environment */ export declare function useGetAccountScopedEnvironmentQuery(props: GetAccountScopedEnvironmentProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;