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 GetAzureSubscriptionsForAcrQueryPathParams { org: string; project: string; } export interface GetAzureSubscriptionsForAcrQueryQueryParams { connector_ref?: string; fqn_path: string; service_ref?: string; } export interface GetAzureSubscriptionsForAcrQueryHeaderParams { 'Harness-Account'?: string; } export type GetAzureSubscriptionsForAcrOkResponse = ResponseWithPagination; export type GetAzureSubscriptionsForAcrErrorResponse = unknown; export interface GetAzureSubscriptionsForAcrProps extends GetAzureSubscriptionsForAcrQueryPathParams, Omit, 'url'> { queryParams: GetAzureSubscriptionsForAcrQueryQueryParams; } export declare function getAzureSubscriptionsForAcr(props: GetAzureSubscriptionsForAcrProps): Promise; /** * Retrieves Azure subscriptions for ACR artifact */ export declare function useGetAzureSubscriptionsForAcrQuery(props: GetAzureSubscriptionsForAcrProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;