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 GetOrgScopedEnvironmentQueryPathParams { org: string; environment: string; } export interface GetOrgScopedEnvironmentQueryHeaderParams { 'Harness-Account'?: string; } export type GetOrgScopedEnvironmentOkResponse = ResponseWithPagination; export type GetOrgScopedEnvironmentErrorResponse = unknown; export interface GetOrgScopedEnvironmentProps extends GetOrgScopedEnvironmentQueryPathParams, Omit, 'url'> { } export declare function getOrgScopedEnvironment(props: GetOrgScopedEnvironmentProps): Promise; /** * Retrieves the specified org scoped environment */ export declare function useGetOrgScopedEnvironmentQuery(props: GetOrgScopedEnvironmentProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;