import { UseQueryOptions } from '@tanstack/react-query'; import type { AcrRegistriesResponse } from '../schemas/AcrRegistriesResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetAccountScopedAcrRegistriesQueryQueryParams { connector_ref: string; subscription_id: string; } export interface GetAccountScopedAcrRegistriesQueryHeaderParams { 'Harness-Account'?: string; } export type GetAccountScopedAcrRegistriesOkResponse = ResponseWithPagination; export type GetAccountScopedAcrRegistriesErrorResponse = unknown; export interface GetAccountScopedAcrRegistriesProps extends Omit, 'url'> { queryParams: GetAccountScopedAcrRegistriesQueryQueryParams; } export declare function getAccountScopedAcrRegistries(props: GetAccountScopedAcrRegistriesProps): Promise; /** * Retrieves ACR registries by subscription at account scope */ export declare function useGetAccountScopedAcrRegistriesQuery(props: GetAccountScopedAcrRegistriesProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;