import { UseQueryOptions } from '@tanstack/react-query'; import type { AcrResponse } from '../schemas/AcrResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetAccountScopedAcrBuildDetailsQueryQueryParams { subscription_id?: string; registry?: string; repository?: string; connector_ref?: string; } export interface GetAccountScopedAcrBuildDetailsQueryHeaderParams { 'Harness-Account'?: string; } export type GetAccountScopedAcrBuildDetailsOkResponse = ResponseWithPagination; export type GetAccountScopedAcrBuildDetailsErrorResponse = unknown; export interface GetAccountScopedAcrBuildDetailsProps extends Omit, 'url'> { queryParams: GetAccountScopedAcrBuildDetailsQueryQueryParams; } export declare function getAccountScopedAcrBuildDetails(props: GetAccountScopedAcrBuildDetailsProps): Promise; /** * Retrieves ACR repository build details at account scope */ export declare function useGetAccountScopedAcrBuildDetailsQuery(props: GetAccountScopedAcrBuildDetailsProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;