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 GetOrgScopedAcrBuildDetailsQueryPathParams { org: string; } export interface GetOrgScopedAcrBuildDetailsQueryQueryParams { subscription_id?: string; registry?: string; repository?: string; connector_ref?: string; } export interface GetOrgScopedAcrBuildDetailsQueryHeaderParams { 'Harness-Account'?: string; } export type GetOrgScopedAcrBuildDetailsOkResponse = ResponseWithPagination; export type GetOrgScopedAcrBuildDetailsErrorResponse = unknown; export interface GetOrgScopedAcrBuildDetailsProps extends GetOrgScopedAcrBuildDetailsQueryPathParams, Omit, 'url'> { queryParams: GetOrgScopedAcrBuildDetailsQueryQueryParams; } export declare function getOrgScopedAcrBuildDetails(props: GetOrgScopedAcrBuildDetailsProps): Promise; /** * Retrieves ACR repository build details at organization scope */ export declare function useGetOrgScopedAcrBuildDetailsQuery(props: GetOrgScopedAcrBuildDetailsProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;