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 GetOrgScopedAcrRegistriesQueryPathParams { org: string; } export interface GetOrgScopedAcrRegistriesQueryQueryParams { connector_ref: string; subscription_id: string; } export interface GetOrgScopedAcrRegistriesQueryHeaderParams { 'Harness-Account'?: string; } export type GetOrgScopedAcrRegistriesOkResponse = ResponseWithPagination; export type GetOrgScopedAcrRegistriesErrorResponse = unknown; export interface GetOrgScopedAcrRegistriesProps extends GetOrgScopedAcrRegistriesQueryPathParams, Omit, 'url'> { queryParams: GetOrgScopedAcrRegistriesQueryQueryParams; } export declare function getOrgScopedAcrRegistries(props: GetOrgScopedAcrRegistriesProps): Promise; /** * Retrieves ACR registries by subscription at organization scope */ export declare function useGetOrgScopedAcrRegistriesQuery(props: GetOrgScopedAcrRegistriesProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;