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 GetAcrRegistriesQueryPathParams { org: string; project: string; } export interface GetAcrRegistriesQueryQueryParams { connector_ref: string; subscription_id: string; } export interface GetAcrRegistriesQueryHeaderParams { 'Harness-Account'?: string; } export type GetAcrRegistriesOkResponse = ResponseWithPagination; export type GetAcrRegistriesErrorResponse = unknown; export interface GetAcrRegistriesProps extends GetAcrRegistriesQueryPathParams, Omit, 'url'> { queryParams: GetAcrRegistriesQueryQueryParams; } export declare function getAcrRegistries(props: GetAcrRegistriesProps): Promise; /** * Retrieves ACR registries by subscription */ export declare function useGetAcrRegistriesQuery(props: GetAcrRegistriesProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;