import { UseQueryOptions } from '@tanstack/react-query'; import type { NexusResponse } from '../schemas/NexusResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetOrgScopedNexusBuildDetailsQueryPathParams { org: string; } export interface GetOrgScopedNexusBuildDetailsQueryQueryParams { repository?: string; repository_port?: string; repository_format?: string; repository_url?: string; artifact_path?: string; connector_ref?: string; group_id?: string; artifact_id?: string; extension?: string; classifier?: string; package_name?: string; group?: string; } export interface GetOrgScopedNexusBuildDetailsQueryHeaderParams { 'Harness-Account'?: string; } export type GetOrgScopedNexusBuildDetailsOkResponse = ResponseWithPagination; export type GetOrgScopedNexusBuildDetailsErrorResponse = unknown; export interface GetOrgScopedNexusBuildDetailsProps extends GetOrgScopedNexusBuildDetailsQueryPathParams, Omit, 'url'> { queryParams: GetOrgScopedNexusBuildDetailsQueryQueryParams; } export declare function getOrgScopedNexusBuildDetails(props: GetOrgScopedNexusBuildDetailsProps): Promise; /** * Retrieves Nexus artifact build details at organization scope */ export declare function useGetOrgScopedNexusBuildDetailsQuery(props: GetOrgScopedNexusBuildDetailsProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;