import { UseQueryOptions } from '@tanstack/react-query'; import type { AzureSubscriptionsResponse } from '../schemas/AzureSubscriptionsResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetOrgScopedAzureSubscriptionsForAcrQueryPathParams { org: string; } export interface GetOrgScopedAzureSubscriptionsForAcrQueryQueryParams { connector_ref?: string; } export interface GetOrgScopedAzureSubscriptionsForAcrQueryHeaderParams { 'Harness-Account'?: string; } export type GetOrgScopedAzureSubscriptionsForAcrOkResponse = ResponseWithPagination; export type GetOrgScopedAzureSubscriptionsForAcrErrorResponse = unknown; export interface GetOrgScopedAzureSubscriptionsForAcrProps extends GetOrgScopedAzureSubscriptionsForAcrQueryPathParams, Omit, 'url'> { queryParams: GetOrgScopedAzureSubscriptionsForAcrQueryQueryParams; } export declare function getOrgScopedAzureSubscriptionsForAcr(props: GetOrgScopedAzureSubscriptionsForAcrProps): Promise; /** * Retrieves Azure subscriptions for ACR artifact at organization scope */ export declare function useGetOrgScopedAzureSubscriptionsForAcrQuery(props: GetOrgScopedAzureSubscriptionsForAcrProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;