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 GetAccountScopedNexusBuildDetailsQueryQueryParams { 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 GetAccountScopedNexusBuildDetailsQueryHeaderParams { 'Harness-Account'?: string; } export type GetAccountScopedNexusBuildDetailsOkResponse = ResponseWithPagination; export type GetAccountScopedNexusBuildDetailsErrorResponse = unknown; export interface GetAccountScopedNexusBuildDetailsProps extends Omit, 'url'> { queryParams: GetAccountScopedNexusBuildDetailsQueryQueryParams; } export declare function getAccountScopedNexusBuildDetails(props: GetAccountScopedNexusBuildDetailsProps): Promise; /** * Retrieves Nexus artifact build details at account scope */ export declare function useGetAccountScopedNexusBuildDetailsQuery(props: GetAccountScopedNexusBuildDetailsProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;