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 GetAccountScopedAzureSubscriptionsForAcrQueryQueryParams { connector_ref?: string; } export interface GetAccountScopedAzureSubscriptionsForAcrQueryHeaderParams { 'Harness-Account'?: string; } export type GetAccountScopedAzureSubscriptionsForAcrOkResponse = ResponseWithPagination; export type GetAccountScopedAzureSubscriptionsForAcrErrorResponse = unknown; export interface GetAccountScopedAzureSubscriptionsForAcrProps extends Omit, 'url'> { queryParams: GetAccountScopedAzureSubscriptionsForAcrQueryQueryParams; } export declare function getAccountScopedAzureSubscriptionsForAcr(props: GetAccountScopedAzureSubscriptionsForAcrProps): Promise; /** * Retrieves Azure subscriptions for ACR artifact at account scope */ export declare function useGetAccountScopedAzureSubscriptionsForAcrQuery(props: GetAccountScopedAzureSubscriptionsForAcrProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;