import { UseQueryOptions } from '@tanstack/react-query'; import type { SystemInfoResponseV3Response } from '../responses/SystemInfoResponseV3Response'; import type { ErrorV3 } from '../schemas/ErrorV3'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetSystemInfoV3QueryQueryParams { account_identifier: string; } export type GetSystemInfoV3OkResponse = ResponseWithPagination; export type GetSystemInfoV3ErrorResponse = ErrorV3; export interface GetSystemInfoV3Props extends Omit, 'url'> { queryParams: GetSystemInfoV3QueryQueryParams; } export declare function getSystemInfoV3(props: GetSystemInfoV3Props): Promise; /** * Returns system-level information for the Harness Artifact Registry, * including the base registry URL for the account. * Use this endpoint to discover the correct registry hostname * for pulling and pushing artifacts. * */ export declare function useGetSystemInfoV3Query(props: GetSystemInfoV3Props, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;